Я пытаюсь использовать EclipseLink и JPA 2.1.0 для подключения к БД. Однако приложение не может обнаружить / распознать файл persistence.xml, помещенный в папку. Пожалуйста, вы можете помочь?
pom.xml
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>eclipselink</artifactId>
<version>2.5.0</version>
</dependency>
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>javax.persistence</artifactId>
<version>2.1.0</version>
</dependency>
persistence.xml
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.1" xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">
<persistence-unit name="Employee" transaction-type="RESOURCE_LOCAL">
<provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
<class>com.sap.cloud.sdk.model.model.Employee</class>
<properties>
<property name="eclipselink.ddl-generation" value="drop-and-create-tables"/>
</properties>
</persistence-unit>
</persistence>
Приведенный выше файл persistence.xml помещается в структуру папок:
firstapp
- application
- src
- main
- java
- package
- resources
- META-INF
- persistence.xml
- Webapp
- WEB-INF
- web.xml
Модель, как показано ниже:
@Entity
@Table(name = "EMPLOYEE")
@Multitenant(value=MultitenantType.TABLE_PER_TENANT)
@TenantTableDiscriminator(type=TenantTableDiscriminatorType.SCHEMA, contextProperty="eclipselink-tenant.id")
@NamedQueries({ @NamedQuery(name = "Employees", query = "SELECT c FROM Employee c")})
public class Employee implements Serializable {
/**
* The (globally unique) ID of the object.
*/
@Id
@Column(name="GUID", length = 36)
private String guid = UUID.randomUUID().toString();
private static final long serialVersionUID = 1L;
@Column(name = "NAME", length = 36, nullable = true)
String name = null;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getGuid()
{
return this.guid;
}
public void setGuid(String guid)
{
this.guid = guid;
}
}
Я пытаюсь использовать указанный выше запрос:
@PersistenceContext(unitName = "Employee")
private EntityManager em;
@Override
protected void doGet( final HttpServletRequest request, final HttpServletResponse response )
throws IOException
{
logger.info("I am running!");
// response.getWriter().write("Hello World.. This is a sample application!");
String docType = "<!doctype html public \"-//w3c//dtd html 4.0 " + "transitional//en\">\n";
String title = "Sample Code for multitenancy Test";
String tenantId = getTenantId();
Map<String, String> props = new HashMap<String, String>();
props.put("elipselink.tenant.id", tenantId);
em = this.getEntityManagerFactory().createEntityManager(props);
Query query = em.createNamedQuery("Employees");
List<Employee> retVal = query.getResultList();
В интеграционном тесте я получаю сообщение об ошибке, из-за которого невозможно определить единицу сохраняемости, упомянутую в аннотации Entity Manager.
SEVERE: FAIL ... 86e424ac-8560-4b85-9df3-4c7253559d80: Missing required persistence.xml for @PersistenceContext ref "em" to unit "Employee"
Aug 26, 2018 8:33:40 AM org.apache.openejb.config.ReportValidationResults logResults
SEVERE: Invalid EjbModule(name=86e424ac-8560-4b85-9df3-4c7253559d80, path=/Users/i048564/Documents/Eclipse/neon/firstapp/integration-tests/target/arquillian-working-dir/1/a
rquillian-tomee-app-working-dir/0/86e424ac-8560-4b85-9df3-4c7253559d80)
Я также пытался поместить файл persistence.xml в папку webapp, как упоминалось в других сообщениях. Но это не помогает.