저는이 Java 프로젝트에서 작업하고 있습니다. 그러나 저는 C# 개발자이고 환경에 완전히 새로운 것입니다. 정말 근본적인 오류가 있다면 여기 있습니다. 그것을 날개 짓!JPA 연결은 Eclipse에서 작동하지만 컴파일시 NullPointerException이 발생합니다.
기본적으로 내 JPA 연결은 Eclipse에서 실행될 때 정상적으로 작동하지만 .jar로 컴파일하자마자 java.lang.NullPointerException이 발생합니다. 여기
내 코드입니다 :public List<DecUpdate> getDecUpdates() {
EntityManagerFactory conn = null;
EntityManager db = null;
try {
// Connect:
conn = Persistence.createEntityManagerFactory("DatabaseName");
db = conn.createEntityManager();
// Get entities:
String queryString = "select d from DecUpdate d "
+ "where d.Requested >= :from "
+ "and d.Completed is null "
+ "and d.Requested = "
+ "(select max(d1.Requested) from DecUpdate d1 "
+ "where d.Requested >= :from "
+ "and d1.Completed is null "
+ "and d1.GroupId = d.GroupId "
+ "and d1.ServiceId = d.ServiceId) "
+ "and not exists "
+ "(select d2 from DecUpdate d2 "
+ "where d.Requested >= :from "
+ "and d2.Requested > d.Requested "
+ "and d2.GroupId = d.GroupId "
+ "and d2.ServiceId = d.ServiceId) ";
Query query = db.createQuery(queryString);
query.setParameter("from", new Timestamp(new DateTime().minusHours(3).getMillis()));
List<DecUpdate> resultList = query.getResultList();
return resultList;
}
catch (Exception e) {
throw e;
}
finally { // Close context and connection:
db.close();
conn.close();
}
}
그리고 이것은 내의 persistence.xml이다 : 나는 같은 주제의 주위에 많이 읽은
<?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence" version="2.0">
<persistence-unit name="DatabaseName" transaction-type="RESOURCE_LOCAL">
<exclude-unlisted-classes>false</exclude-unlisted-classes>
<properties>
<property name="javax.persistence.jdbc.driver" value="com.microsoft.sqlserver.jdbc.SQLServerDriver"></property>
<property name="javax.persistence.jdbc.url" value="jdbc:sqlserver://1.1.1.1:1111;DatabaseName=DatabaseName"></property>
<property name="javax.persistence.jdbc.user" value="foo"></property>
<property name="javax.persistence.jdbc.password" value="bar"></property>
<!-- EclipseLink should create the database schema automatically -->
<property name="eclipselink.ddl-generation" value="create-tables" />
<property name="eclipselink.ddl-generation.output-mode" value="database" />
</properties>
</persistence-unit>
</persistence>
내가하지만 난 이유를 알아낼 수 없습니다 수 이것은 개발 환경에서 작동하지만 컴파일 할 때 작동하지는 않습니다. 나는 내가 읽고있는 모든 튜토리얼에서 가정하고있는 기본적인 지식이 부족하다고 생각하지만 스스로 훈련을 한 이후로는 가지고 있지 않다.
누구든지 내 신인 오류를 지적하고 싶습니까?
편집: 내가 잘못이나 뭔가 내의 persistence.xml을 참조하는 것 같은 나에게 보이는
org.eclipse.persistence.exceptions.PersistenceUnitLoadingException:
Exception Description: An exception was thrown while trying to load persistence unit at url: rsrc:../
Internal Exception: Exception [EclipseLink-30004] (Eclipse Persistence Services - 2.7.0.v20170811-d680af5): org.eclipse.persistence.exceptions.PersistenceUnitLoadingException
Exception Description: An exception was thrown while processing persistence.xml from URL: rsrc:../
Internal Exception: java.net.MalformedURLException
at...
: @ThomasEdwin에서 일부 뒤를 쫓고에
덕분에, 나는 더 도움이 오류를 발견했습니다 ? 그것은 src/META-INF 폴더에 있습니다. 아마도 컴파일 중에 어딘가로 이동하거나 포함 시키거나 참조해야합니까?
com.microsoft.sqlserver.jdbc.SQLServerDriver에 대한 종속성을 추가 했습니까? –
스택 추적이란 무엇입니까? – ThomasEdwin
@vts : 종속성 추가 측면에서 내 무지를 용서하지만, 나는 그것이 당신이 의미하는 바를 100 % 확신하지 못합니다. 컴파일 할 때 "패키지가 필요한 라이브러리를 생성 된 JAR에 넣었습니다."라는 메시지가 표시됩니다. – technophebe