简体   繁体   English

创建我的第一个JDBC领域(Glassfish V3)

[英]Creating my first JDBC Realm(Glassfish V3)

I want to create a JDBC Realm for my web app. 我想为我的Web应用程序创建一个JDBC领域。 Since my users are very different from each other i need to have just one table, with the usernames and passwords for the realm, i decided to create a new table in my database called ROLE(oneToOne relationship with the other users table). 由于我的用户彼此非常不同,因此我只需要一个表,其中包含该领域的用户名和密码,因此我决定在数据库中创建一个名为ROLE(与其他用户表建立oneToOne关系)的新表。

This is how my users domain model looks like: 这是我的用户域模型的样子: 在此处输入图片说明

I am following this tutorial http://blog.gamatam.com/2009/11/jdbc-realm-setup-with-glassfish-v3.html but i am stuck, i dont know how to continue. 我正在按照本教程http://blog.gamatam.com/2009/11/jdbc-realm-setup-with-glassfish-v3.html进行操作,但我遇到了麻烦,我不知道如何继续。

I will post the configuration i made at the glassfish server and also my file sun.resources.xml so you can correct me if i am making any mistake: 我将发布我在glassfish服务器上所做的配置以及我的文件sun.resources.xml,以便在我出错时可以纠正我: 在此处输入图片说明

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE resources PUBLIC "-//Sun Microsystems, Inc.//DTD Application Server 9.0  Resource Definitions //EN" "http://www.sun.com/software/appserver/dtds/sun-resources_1_3.dtd">
 <resources>
 <jdbc-resource enabled="true" jndi-name="jdbc/myDatasource" object-type="user" pool- name="Derby_grupovina_grupovinauserPool"/>
 <jdbc-connection-pool allow-non-component-callers="false" associate-with-thread="false" connection-creation-retry-attempts="0" connection-creation-retry-interval-in-seconds="10" connection-leak-reclaim="false" connection-leak-timeout-in-seconds="0" connection-validation-method="auto-commit" datasource-classname="org.apache.derby.jdbc.ClientDataSource" fail-all-connections="false" idle-timeout-in-seconds="300" is-connection-validation-required="false" is-isolation-level-guaranteed="true" lazy-connection-association="false" lazy-connection-enlistment="false" match-connections="false" max-connection-usage-count="0" max-pool-size="32" max-wait-time-in-millis="60000" name="Derby_grupovina_grupovinauserPool" non-transactional-connections="false" pool-resize-quantity="2" res-type="javax.sql.DataSource" statement-timeout-in-seconds="-1" steady-pool-size="8" validate-atmost-once-period-in-seconds="0" wrap-jdbc-objects="false">
<property name="serverName" value="localhost"/>
    <property name="PortNumber" value="1527"/>
    <property name="DatabaseName" value="grupovina"/>
    <property name="User" value="grupovinauser"/>
    <property name="Password" value="grupovina"/>
    <property name="URL" value="jdbc:derby://localhost:1527/grupovina;create=true"/>
    <property name="driverClass" value="org.apache.derby.jdbc.ClientDriver"/>
   </jdbc-connection-pool>
  </resources>

In the above comfiguration i have a few doubts, I dont really understand what should i ad at Group table and Group name Column. 在上面的配置中,我有一些疑问,我真的不明白我应该在“组”表和“组名”列中投放什么。

The tutorial im following says that i should add security roles at the file sun-web.xml, and i wanted to do it but i dont know what to put in the configuratio. 我随后的教程说,我应该在文件sun-web.xml中添加安全角色,并且我想这样做,但是我不知道要在配置中添加什么。 This is just what i added to that file but i think it is not correct. 这就是我添加到该文件中的内容,但我认为这是不正确的。 Where in that file should i add the role mapping and how should i configure it? 我应该在该文件的哪个位置添加角色映射,以及如何配置它?

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sun-web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Application Server 9.0 Servlet 2.5//EN" "http://www.sun.com/software/appserver/dtds/sun-web-app_2_5-0.dtd">
<sun-web-app error-url="">
<context-root>/GroupBuySystem</context-root>
<class-loader delegate="true"/>
<jsp-config>
<property name="keepgenerated" value="true">
  <description>Keep a copy of the generated servlet class java code.</description>
</property>
</jsp-config>    
<security-role-mapping>
<role-name> </role-name>
<group-name> </group-name>
</security-role-mapping>
</sun-web-app>

The guy of the tutorial said he had not need for a web.xml, but i do need that file. 本教程的人说他不需要web.xml,但我确实需要该文件。 What should i add my web.xml? 我应该添加什么web.xml?

This is my first jdbc realm, i am very confused :) 这是我的第一个jdbc领域,我很困惑:)

I assume (from your previous question) that you don't have a group table. 我假设(根据您先前的问题)您没有组表。 In fact you don't necessarily need one. 实际上,您不一定需要一个。 JDBCRealm works with only a user table containing a group column as well. JDBCRealm仅与包含组列的用户表一起使用。

In your Glassfish admin console change the following: 在您的Glassfish管理控制台中,更改以下内容:

Group Table: Role 组表:角色

Group Name Column: userType 组名称列:userType

Since you used different typings (letter cases) for the word "role", make sure that the configuration values for your realm are exactly the same as in the table. 由于您对“角色”一词使用了不同的键入方式(字母大小写),因此请确保您领域的配置值与表中的配置值完全相同。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM