Hi
we want Explain JDBCRealm?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Chintan RathodPosted May 25, 2012, 5:10 AM
A Realm is a "database" of usernames and passwords that identify valid users of a web application (or set of web applications), plus an enumeration of the list of roles associated with each valid user. You can think of roles as similar to groups in Unix-like operating systems, because access to specific web application resources is granted to all users possessing a particular role (rather than enumerating the list of associated usernames). A particular user can have any number of roles associated with their username.
What is JDBCRealm?
JDBCRealm is an implementation of the Tomcat 6 Realm interface that looks up users in a relational database accessed via a JDBC driver.
database structure conforms to the following requirements:
For more information http://tomcat.apache.org/tomcat-6.0-doc/realm-howto.html#JDBCRealm
Thanks & Regards
-----------------
Chintan Rathod