I got around this problem by replacing com.springsource.javax.persistence-1.0.0.jar with hibernate-jpa-2.0-api-1.0.0.Final.jar.
If you have both jars in your classpath, simply remove...
Type: Posts; User: kdurotoye; Keyword(s):
I got around this problem by replacing com.springsource.javax.persistence-1.0.0.jar with hibernate-jpa-2.0-api-1.0.0.Final.jar.
If you have both jars in your classpath, simply remove...
Thanks lumpynose.
The problem is that I have a legacy data that allows the user and admin to have the same username.
So, it's impossible to have both details in the same table.
Thanks for your prompt reply.
My worry about this approach is that if there are two users with the same username in both tables, the second JdbcDaoImpl will never be used.
Hi all,
Is there any way I can implement two different login pages using Spring Security as follows:
i. For registered users (say, userlogin.jsp using the User table) and
ii. For...