Saturday, September 26, 2015

Securing Web Application in Tomcat 7 using jdbc realm and j_security_check

Use case :  a Web Application contains master and transaction modules. Those modules need to be secured using Admin role. Implementation :  Prepare database table, we can use either table or view. The following script is the minimum requirement, we can use either table and view. CREATE TABLE "USER_MANAGEMENT" ( "ID" NUMBER(5,0) NOT NULL ENABLE, "USER_ID"...

Wednesday, September 2, 2015