首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

hibernate 二级缓存

2012-06-28 
hibernate 2级缓存/session-factory /hibernate-configuration2.hibernate-mappingclass nameorg

hibernate 2级缓存

    </session-factory>

</hibernate-configuration>
2.
<hibernate-mapping>
    <class name="org.jw.po.Users" table="users" schema="dbo" catalog="pubs">
        <!--配置-->
        <cache usage="read-only"></cache>
        <id name="sid" type="java.lang.Integer">
            <column name="sid" />
            <generator />
        </id>
        <property name="sname" type="java.lang.String">
            <column name="sname" length="20" not-null="true" />
        </property>
    </class>
</hibernate-mapping>
 

热点排行