我的hibernate文件如下:
<?xml version="1.0"?><!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="com.zf.entity" > <class name="Student" table="student" > <id name="sid" type="integer"> <generator class="increment" /> </id> <property name="s_name" /> <property name="s_password"/> </class></hibernate-mapping>
我在程序里中自动创建表,可是没次添加数据都会覆盖原来的数据,查询数据库也是只有一条数据。这是什么情况导致的呢?希望大家能给予帮助
添加回答
举报
0/150
提交
取消