public class User { private int id; private String username;// 用户姓名 private String sex;// 性别 private Date birthday;// 生日 private String address;// 地址 public int getId() { return id; } public void setId(int id) { this.id = id; } public String getUsern…
之前使用MyEclipse来开发Web应用,可以在MyEclipse中配置服务器,配置完后,直接运行服务器即可,很方便. 最近切换到Eclipse开发环境,发现使用Tomcat的方式不太一样,因此在此稍作记录. 在Eclipse中使用Tomcat运行Web应用,主要有两种模式: 1.默认方式: 在标准的web系统右键,选择Run on Server 选择Tomcat服务器,如何没有,可以点击Add新增服务器. 直接点击[Finish]按钮,就可以正常运行你的Web应用了. 2.改进方案:将应…
下午在eclipse中配置struts2时报: There is no Action mapped for namespace [/] and action name [Login] associated with context path [/eprint] 错误 做如下检查: 1.确保struts.xml文件名大小写正确:struts.xml 2.确保struts.xml文件在src目录下(很重要!后面就着重说这个) 附: web.xml文件内容 示例: <?xml version="…
对junit单元测试的报告: 1. ------------------------------------------------------- 2. T E S T S 3. ------------------------------------------------------- 4. Running com.liuyan.account.mail.AccountImageServiceImplTest 5. --------------------------------…