반응형
persistence.xml에서 JPA 2.1을 지정하는 방법은 무엇입니까?
인터넷에서 빠른 검색은 세 가지 계시 또는 네 사람이 지정되어 어떻게 변형 xmlns
과 xsi:schemaLocation
에서 persistence.xml
.
JPA 버전 2.1을 지정하는 '올바른'방식은 무엇입니까?
나는 사용하고있다
<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 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"
version="2.1">
...
</persistence>
참고 URL : https://stackoverflow.com/questions/21142168/how-to-specify-jpa-2-1-in-persistence-xml
반응형
'programing tip' 카테고리의 다른 글
Cygwin 32 비트에서 Cygwin 64 비트로 전환하는 것이 좋습니까? (0) | 2020.12.12 |
---|---|
CSS 전달 최적화 : CSS 로딩을 연기하는 방법? (0) | 2020.12.12 |
CSS 이미지 최대 너비를 원본 이미지 크기로 설정 하시겠습니까? (0) | 2020.12.12 |
Kotlin에서 Mockito를 사용할 수 있습니까? (0) | 2020.12.12 |
자바 스크립트 콜백 범위 (0) | 2020.12.12 |