将 JDBCRealm 从 tomcat 移植到 OC4J
我正在将 servlet 从 Tomcat 5.5
移植到 OC4J 10.1.3.1
。
在 Tomcat 中,我们设置了一个 JDBCRealm 来进行身份验证和授权。 这是通过 $TOMCAT_HOME/conf/server.xml
配置的。
OC4J中有类似的机制吗? 我从哪里开始寻找它? 我如何定义它?
I'm porting a servlet from Tomcat 5.5
to OC4J 10.1.3.1
.
In Tomcat we set up a JDBCRealm
for authentication and authorization. This was configured via the $TOMCAT_HOME/conf/server.xml
.
Is there a similar mechanism in OC4J
? Where do I start looking for it? How do I define it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,OC4J 中也有类似的机制。 它是 DBTableOraDataSourceLoginModule OC4J 附带的登录模块。
Yes, there is a similar mechanism in OC4J. It is the DBTableOraDataSourceLoginModule which is a login module that ships with OC4J.