Maybe the following explanation can help other JForum's newbies in the future:
1. user_new.htm calls pt_BR.properties via
getMessage("User.fillCpf") and
getMessage("User.cpf")
2. user_new.htm calls UserAction.java via
???
3. UserAction.java calls User.java via
u.setCpf(cpf);
4. User.java calls GenericUserDao.java via
setCpf(
String cpf) { this.cpf = cpf; }
5. GenericUserDao.java calls generic_queries.sql via
p.setString(6, user.getCpf());
6. generic_queries.sql calls the database via
UserModel.addNew = INSERT INTO jforum_users (username, user_password,
user_email, user_regdate, user_actkey, user_cpf) VALUES (?, ?, ?, ?, ?, ?)
If anybody whose knows this flow better, please, will be a pleasure be corrected and really understand what JForum does in fact! :P
[ ]'s
[originally posted on jforum.net by leandro_salvador]