一、运行环境
MyEclipse+Tomcat+MySQL
二、项目包结构
三、entity实体包
<span style="font-size:14px;">package com.tccp.entity;
/**
* 用户
* @author tccp项目组
*
*/
public class User {
private int user_id;
private String username;
private String age;
public User(){
super();
}
public User(int user_id, String username, String age) {
super();
this.user_id = user_id;
this.usernam