我做了很多教程。 但我还没有成功连接到我的DataBase MySql。
我尝试使用glassfish域管理控制台。 正如教程所说,我首先创建一个池,然后是一个JDBC资源。连接成功(仅在控制台上)。 然后我添加了Persistence Unit,并引用了我创建的JDBC资源。
但是当我开始在我的控制器中使用数据库时,我收到此错误
Caused by: java.sql.SQLException: No database selected
我的代码:
@EJB
private UserService userService;
User user = new User();
System.err.println("date = "+ user.getBirthDate());
user.setFirstname("pierre");
user.setUsername("pierre");
user.setPassword("pierre");
user.setLastname("pierre");
user.setEmail("pierre@hotmail.fr");
userService.save(user); //this make the error..
因此,我已经尝试在persistence.xml中添加一个新的DataSource。
这是我自动生成的glassfish-resources.xml
<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="com.mysql.jdbc.jdbc2.optional.MysqlDataSource" 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="mysql_rmt_rootPool" 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="3306"/>
<property name="databaseName" value="rmt"/>
<property name="User" value="root"/>
<property name="Password" value="mypasswordhere"/>
<property name="URL" value="jdbc:mysql://localhost:3306/rmt?zeroDateTimeBehavior=convertToNull"/>
<property name="driverClass" value="com.mysql.jdbc.Driver"/>
</jdbc-connection-pool>
<jdbc-resource enabled="true" jndi-name="java:app/rmt" object-type="user" pool-name="mysql_rmt_rootPool"/>
在窗口中,连接成功。但是,我有这个错误
Severe: Exception while preparing the app : Invalid resource : { ResourceInfo : (jndiName=java:app/sta__pm), (applicationName=STA) }
com.sun.appserv.connectors.internal.api.ConnectorRuntimeException: Invalid resource : { ResourceInfo : (jndiName=java:app/sta__pm), (applicationName=STA) }
所以我现在很迷茫。有人能帮帮我吗?
也许我不应该先开始创建持久性? 或者我的JNDI名称是错的?