编辑:
2016-02-17
?xml version=‘1.0‘ encoding=‘utf-8‘?
!DOCTYPE hibernate-configuration
PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"
hibernate-configuration
session-factory
property name="hibernate.connection.driver_class"com.mysql.jdbc.Driver/property
property name="hibernate.connection.url"jdbc:mysql:///user/property
property name="hibernate.connection.username"root/property
property name="hibernate.connection.password"/property
property name="hibernate.connection.pool_size"100/property
property name="dialect" org.hibernate.dialect.MySQLDialect/property
!-- Mapping files --
mapping resource="user.hbm.xml"/
/session-factory
/hibernate-configuration
User.hbm.xml:
?xml version="1.0"?
!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 2.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd"
hibernate-mapping
class
name=" hibernate.User"
table="user"
id
name="id"
type="java.lang.String"
column="id"
generator class="assigned" /
/id
property
name="name"
type="java.lang.String"
column="name"
not-null="true"
length="20"
/
property
name="psw"
type="java.lang.String"
column="psw"
not-null="true"
length="20"
/
/class
/hibernate-mapping
编辑老师在此也特别为朋友们编辑整理了5000字JSP论文。更多详情请点击进入计算机论文。
标签:JSP论文
精品学习网(51edu.com)在建设过程中引用了互联网上的一些信息资源并对有明确来源的信息注明了出处,版权归原作者及原网站所有,如果您对本站信息资源版权的归属问题存有异议,请您致信qinquan#51edu.com(将#换成@),我们会立即做出答复并及时解决。如果您认为本站有侵犯您权益的行为,请通知我们,我们一定根据实际情况及时处理。