摘要: 实体类: 1 package xml; 2 3 import javax.xml.bind.annotation.XmlRootElement; 4 5 @XmlRootElement 6 public class User { 7 String name; 8 String e... 阅读全文
posted @ 2015-04-28 21:39 思思博士 阅读(2653) 评论(0) 推荐(0)
摘要: 一.搭建环境,建立数据库1 CREATE TABLE user(2 id int(11) not NULL AUTO_INCREMENT,3 userName varchar(50) DEFAULT NULL,4 userAge int(11) DEFAUL... 阅读全文
posted @ 2015-04-28 11:12 思思博士 阅读(248) 评论(0) 推荐(0)