<?xml version="1.0" encoding="UTF-8"?>
| <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD
2.0//EN"
| "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
| <hibernate-mapping>
| <class name="User" table="BankUser">
| <id column="ID" name="id" type="java.lang.Long">
| <generator class="identity"/>
| </id>
| <property name="Name" type="string" length="50"
column="Name" />
| <property name="password" type="string" length="50"
column="password" />
| </class>
| </hibernate-mapping>
|
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4229173#...
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&a...