Could you post your encodePassword() ?
you might want to talk a look at this post:
http://forum.springsource.org/showthread.php?t=99013
Type: Posts; User: thai; Keyword(s):
Could you post your encodePassword() ?
you might want to talk a look at this post:
http://forum.springsource.org/showthread.php?t=99013
Hi all,
Spring and Hibernate provided the way to insert a record into database via the save() method.
Ex:
User() user = new User(int id, String name);
userDAO.save(user);
which is great. ...