资源简介
spring+struts2+hibernate整合框架,具有user登陆、info表增删改查功能,包结构标准,面向接口编程,具有Hibernate数据库Junit测试类,可作为web项目架构基础!
数据库文件在项目WebRoot根目录下
数据库:Mysql
IDE: Myeclipse
服务器:Tomcat
测试绝对可用!
去瞧瞧吧。
代码片段和文件信息
package com.mstf.action;
import java.util.List;
import com.mstf.bean.Info;
import com.mstf.service.InfoService;
import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ModelDriven;
@SuppressWarnings(“serial“)
public class InfoAction extends ActionSupport implements ModelDriven{
//用于ModelDriven填充对象入口为getModel方法
private Info info;
//用于spring自动注入,入口为setInfoService方法
private InfoService infoService;
//方法名对应info_*.action中的*通配符
public String list() throws Exception{
//调用service方法,返回从数据库取出的数据
List infolist=infoService.getAll();
//放入session
ActionContext.getContext().put(“infolist“ infolist);
//返回视图,list对应struts.xml对应的jsp或action
return “list“;
}
public String addUI() throws Exception{
return “addUI“;
}
public String add() throws Exception{
infoService.save(info);
return “tolist“;
}
public String updateUI() throws Exception{
Info infos=infoService.getById(info.getId());
ActionContext.getContext().getValueStack().push(infos);
return “updateUI“;
}
public String update() throws Exception{
Info infos=infoService.getById(info.getId());
infos.setName(info.getName());
infos.setAge(info.getAge());
infos.setAddress(info.getAddress());
infoService.update(infos);
return “tolist“;
}
public String delete() throws Exception{
infoService.delete(info.getId());
return “tolist“;
}
@Override
public Info getModel() {
info =new Info();
return info;
}
public InfoService getInfoService() {
return infoService;
}
public void setInfoService(InfoService infoService) {
this.infoService = infoService;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-10-30 21:49 HSS\
文件 2676 2016-06-05 21:12 HSS\.classpath
目录 0 2016-06-05 21:13 HSS\.myeclipse\
文件 282 2016-06-05 21:12 HSS\.myme
文件 1746 2016-06-05 21:12 HSS\.project
目录 0 2016-06-05 21:12 HSS\.settings\
文件 500 2016-06-05 21:12 HSS\.settings\.jsdtscope
文件 395 2016-06-05 21:12 HSS\.settings\org.eclipse.jdt.core.prefs
文件 447 2016-06-05 21:12 HSS\.settings\org.eclipse.wst.common.component
文件 252 2016-06-05 21:12 HSS\.settings\org.eclipse.wst.common.project.facet.core.xm
文件 49 2016-06-05 21:12 HSS\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2016-06-05 21:12 HSS\.settings\org.eclipse.wst.jsdt.ui.superType.name
目录 0 2016-06-05 21:12 HSS\src\
文件 3999 2016-06-05 21:12 HSS\src\applicationContext.xm
目录 0 2016-06-05 21:12 HSS\src\com\
目录 0 2016-06-05 21:12 HSS\src\com\mstf\
目录 0 2016-06-05 21:12 HSS\src\com\mstf\action\
文件 1872 2016-06-05 21:12 HSS\src\com\mstf\action\InfoAction.java
文件 1311 2016-06-05 21:12 HSS\src\com\mstf\action\UserAction.java
目录 0 2016-06-05 21:12 HSS\src\com\mstf\bean\
文件 916 2016-06-05 21:12 HSS\src\com\mstf\bean\Bean.hbm.xm
文件 580 2016-06-05 21:12 HSS\src\com\mstf\bean\Info.java
文件 1376 2016-06-05 21:12 HSS\src\com\mstf\bean\User.java
目录 0 2016-06-05 21:12 HSS\src\com\mstf\service\
目录 0 2016-06-05 21:12 HSS\src\com\mstf\service\impl\
文件 1517 2016-06-05 21:12 HSS\src\com\mstf\service\impl\InfoServiceImpl.java
文件 999 2016-06-05 21:12 HSS\src\com\mstf\service\impl\UserServiceImpl.java
文件 279 2016-06-05 21:12 HSS\src\com\mstf\service\InfoService.java
文件 132 2016-06-05 21:12 HSS\src\com\mstf\service\UserService.java
目录 0 2016-06-05 21:12 HSS\src\com\mstf\test\
文件 1882 2016-06-05 21:12 HSS\src\com\mstf\test\TestUser.java
............此处省略68个文件信息
评论
共有 条评论