首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

ssj项目学习之persistence.xml配备

2012-12-21 
ssj项目学习之persistence.xml配置?xml version1.0?persistence xmlnshttp://java.sun.com/xml/ns

ssj项目学习之persistence.xml配置

<?xml version="1.0"?><persistence xmlns="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 http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd" version="1.0"><persistence-unit name="news" transaction-type="RESOURCE_LOCAL"><properties><property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/><property name="hibernate.connection.driver_class" value="com.microsoft.sqlserver.jdbc.SQLServerDriver"/><property name="hibernate.connection.user" value=""/><property name="hibernate.connection.password" value=""/><property name="hibernate.connection.url" value="jdbc:sqlserver://202.109.251.111;databaseName="/><property name="hibernate.hbm2ddl.auto" value="update"/><property name="hibernate.show_sql" value="true"/><property name="hibernate.format_sql" value="false"/><property name="hibernate.max_fetch_depth" value="3"/></properties></persistence-unit></persistence>

    JPA规范要求在类路径的META-INF目录下放置persistence.xml, 文件的名称是固定的,内容大体和hibernate差不多

热点排行