質問編集履歴
2
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -50,7 +50,7 @@
|
|
50
50
|
|
51
51
|
xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
52
52
|
|
53
|
-
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence
|
53
|
+
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">
|
54
54
|
|
55
55
|
<persistence-unit name="persistenceUnit"
|
56
56
|
|
1
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,6 @@
|
|
1
1
|
STS4でサーバー実行した時に下記のエラーが出ました。
|
2
|
+
|
3
|
+
|
2
4
|
|
3
5
|
```コンソール
|
4
6
|
|
@@ -33,3 +35,53 @@
|
|
33
35
|
at java.lang.Thread.run(Unknown Source)
|
34
36
|
|
35
37
|
```
|
38
|
+
|
39
|
+
実行した時だけにエラーが出ていて、実行していないときは問題にエラーは出ていません。
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
自分で探してみてpersistence.xmlに原因があると思って下記の記述にしてみましたがそれでも解決しませんでした。
|
44
|
+
|
45
|
+
```persistence.xml
|
46
|
+
|
47
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
48
|
+
|
49
|
+
<persistence version="2.1"
|
50
|
+
|
51
|
+
xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
52
|
+
|
53
|
+
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">
|
54
|
+
|
55
|
+
<persistence-unit name="persistenceUnit"
|
56
|
+
|
57
|
+
transaction-type="RESOURCE_LOCAL">
|
58
|
+
|
59
|
+
<provider>org.hibernate.ejb.HibernatePersistence</provider>
|
60
|
+
|
61
|
+
<properties>
|
62
|
+
|
63
|
+
<property name="hibernate.dialect" value="org.hibernate.dialect.Oracle10gDialect" />
|
64
|
+
|
65
|
+
<property name="javax.persistence.jdbc.driver" value="oracle.jdbc.OracleDriver" />
|
66
|
+
|
67
|
+
<property name="javax.persistence.ユーアールエル" value="jdbc:oracle:thin:接続詳細" />
|
68
|
+
|
69
|
+
<property name="名前" value="ユーザー名" />
|
70
|
+
|
71
|
+
<property name="javax.persistence.jdbc.password" value="パスワード" />
|
72
|
+
|
73
|
+
</properties>
|
74
|
+
|
75
|
+
</persistence-unit>
|
76
|
+
|
77
|
+
</persistence>
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
```
|
82
|
+
|
83
|
+
データベースのログイン情報はあえて変更しています。
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
javax.persistence.PersistenceException: Unable to build entity manager factoryのエラーの意味、または原因について教えていただけますか?
|