linlinyu

linlinyu
posts - 0, comments - 4, trackbacks - 0, articles - 15

persistence.xml

Posted on 2008-06-01 16:14 linlin yu 阅读(996) 评论(0)  编辑  收藏 所属分类: ejbhibernate
<?xml version="1.0" encoding="UTF-8"?>
<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="EJBServerPU" transaction-type="JTA">
        
<jta-data-source>java:/MySqlDS</jta-data-source>
        
<properties>
            
<property name="hibernate.hbm2ddl.auto" value="none" />
            
<property name="hibernate.dialect"
                value
="org.hibernate.dialect.MySQLDialect" />
            
<property name="hibernate.show_sql" value="true" />
            
<!-- use a file system based index -->
            
<property name="hibernate.search.default.directory_provider"
                value
="org.hibernate.search.store.FSDirectoryProvider" />
            
<!-- directory where the indexes will be stored -->
            
<property name="hibernate.search.default.indexBase"
                value
="C:\\bb\\indexs" />

            
<property name="hibernate.ejb.event.post-insert"
                value
="org.hibernate.search.event.FullTextIndexEventListener" />
            
<property name="hibernate.ejb.event.post-update"
                value
="org.hibernate.search.event.FullTextIndexEventListener" />
            
<property name="hibernate.ejb.event.post-delete"
                value
="org.hibernate.search.event.FullTextIndexEventListener" />



        
</properties>
    
</persistence-unit>

</persistence>

只有注册用户登录后才能发表评论。


网站导航: