This is my EJB implementation
@Stateless
public class ImplBean implements BeanLocal,BeanRemote
{
@PersistenceContext(unitName="DbTest") private EntityManager manager;
.....
.....
@Override
public Obj create(Obj obj)
{
manager.persist(obj);
return obj;
}
}
and I get this error when launching a webpage
Error occurred during deployment: Exception while preparing the app : Invalid resource : jdbc/d1216ab17d89a4dc1b397ac89a5c573ed__pm. Please see server.log for more details. C:\Users....\build-impl.xml:732: The module has not been deployed.
This is my persistence.xml
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
<persistence-unit name="DbTest" transaction-type="JTA">
<jta-data-source>jdbc/d1216ab17d89a4dc1b397ac89a5c573ed</jta-data-source>
<exclude-unlisted-classes>false</exclude-unlisted-classes>
<properties/>
</persistence-unit>
</persistence>
and this is my glassfish-resources.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE resources PUBLIC "-//GlassFish.org//DTD GlassFish Application Server 3.1 Resource Definitions//EN" "http://glassfish.org/dtds/glassfish-resources_1_5.dtd">
<resources>
<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_d1216ab17d89a4dc1b397ac89a5c573ed_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="databaseName" value="d1216ab17d89a4dc1b397ac89a5c573ed"/>
<property name="User" value="root"/>
<property name="Password" value="***"/>
<property name="URL" value="jdbc:mysql://localhost/d1216ab17d89a4dc1b397ac89a5c573ed"/>
<property name="driverClass" value="com.mysql.jdbc.Driver"/>
</jdbc-connection-pool>
<jdbc-resource enabled="true" jndi-name="jdbc/d1216ab17d89a4dc1b397ac89a5c573ed" object-type="user" pool-name="mysql_d1216ab17d89a4dc1b397ac89a5c573ed_rootPool"/>
</resources>
Any suggestions why I am getting that error ? I am using Netbeans