JPA配置文件

配置文件的文件名是固定的,创建JPA项目会自动生成配置文件。

     JPA 规范要求在类路径的 META-INF 目录下放置persistence.xml

    下面具体配置的意义:


	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">
		
	
	
		
		org.hibernate.jpa.HibernatePersistenceProvider
		
		com.jpa.helloworld.Customer
		
		
			
			
				value="jdbc:mysql://localhost:3306/xxx?useUnicode=true&haracterEncoding=utf-8&useSSL=false&serverTimezone=Asia/Shanghai" />
			
			
			
			
			
			
		
	



你可能感兴趣的:(JPA)