Persistence.xml 配置说明

Persistence.xml 配置说明

 

3. Persistence.xml 配置说明


xmlns:persistence="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence persistence_1_0.xsd ">




  
  

  
     

  
   java:/MySqlDS
  

  
   product.xml

  
   ../lib/model.jar

  
   com.domain.User
   com.domain.Product

  
  

  
  
   
   
   
  






persistence.xml
2008-02-13 21:42


    xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation=" http://java.sun.com/xml/ns/persistence
     http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd" version="1.0">
    
   

  
   oracle.toplink.essentials.PersistenceProvider
   jdbc/MyDataSource
   jdbc/NonTxMyDataSource
   META-INF/my_queries.xml
   META-INF/my_entities.xml
   my/my-classes.jar
   myclass1
   myclass2
  
  
   
   
  



你可能感兴趣的:(java)