Tomcat j_security_check 的快速问题...
任何人都知道如何在 user_role 表中更改 'id' 的 'user_name',因为我更愿意通过匹配 ID 而不是用户名来验证
服务器.xml
<Realm className="org.apache.catalina.realm.JDBCRealm"
driverName="com.mysql.jdbc.Driver"
connectionURL="jdbc:mysql://localhost/test"
connectionName="root" connectionPassword="password"
userTable="user" userNameCol="user_name" userCredCol="user_pass"
userRoleTable="user_role_link" roleNameCol="role_id" />
表
user
id INT PK
user_name PK
user_pass
role
id INT PK
role_name
user_role
user_id FK user_id to user.id
role_id FK role_id to role.id
形式仍然是:
<form method="post" action="j_security_check" name="loginForm">
<j:if test='${not empty param["failed"]}'>
Invalid sign-in credentials<br/>
</j:if>
<h:inputText id="j_username" autocomplete="off" />
<br/>
<h:inputSecret id="j_password" autocomplete="off"/>
<br/>
<h:commandButton type="reset" value="Clear"/>
<h:commandButton type="submit" value="Login"/>
</form>
我已经让 role_id 工作了,但是使用 user_id 我只是得到一个
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'user_name' in 'where clause'
例外
提前致谢
KPS