资源简介
(SSM框架集成)spring+struts2+mybatis三大框架集成实现用户的增删改查入门操作案例!
代码片段和文件信息
package com.xushouwei.action;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Controller;
import com.opensymphony.xwork2.ActionSupport;
import com.xushouwei.bean.User;
import com.xushouwei.service.UserService;
@Controller
@Scope(“prototype“)
public class UserAction extends ActionSupport{
@Autowired
private UserService userService;
private User user;
private List userList;
public String execute() throws Exception {
// TODO Auto-generated method stub
return null;
}
public String login()
{
if(user!=null)
{
User user2=userService.userLogin(user);
if(user2!=null)
{
return SUCCESS;
}
}
this.addFieldError(“user.username“ “用户名或密码错误!“);
return INPUT;
}
public String addUI()
{
return “addUser“;
}
public String updateUI()
{
System.out.println(“--------updateUI----------“);
user=userService.findUserById(user.getId());
return “updateUser“;
}
public String add()
{
userService.insertUser(user);
return SUCCESS;
}
public String delete()
{
userService.deleteUser(user.getId());
return SUCCESS;
}
public String update() {
userService.updateUser(user);
return SUCCESS;
}
public String selectAllUser()
{
userList = userService.selectAllUser();
return “userList“;
}
public User getUser() {
return user;
}
public void setUser(User user) {
this.user = user;
}
public List getUserList() {
return userList;
}
public void setUserList(List userList) {
this.userList = userList;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2016-07-15 16:09 rest\
文件 1093 2016-07-15 09:51 rest\.classpath
文件 1329 2016-07-15 14:37 rest\.project
目录 0 2016-07-15 16:07 rest\.settings\
文件 522 2016-07-15 09:51 rest\.settings\.jsdtscope
文件 364 2016-07-15 09:51 rest\.settings\org.eclipse.jdt.core.prefs
文件 471 2016-07-15 09:51 rest\.settings\org.eclipse.wst.common.component
文件 414 2016-07-15 09:51 rest\.settings\org.eclipse.wst.common.project.facet.core.xm
文件 49 2016-07-15 09:51 rest\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2016-07-15 09:51 rest\.settings\org.eclipse.wst.jsdt.ui.superType.name
文件 979 2016-07-15 16:08 rest\db_conn.sql
目录 0 2016-07-15 16:07 rest\src\
目录 0 2016-07-15 16:07 rest\src\com\
目录 0 2016-07-15 16:07 rest\src\com\xushouwei\
目录 0 2016-07-15 16:07 rest\src\com\xushouwei\action\
文件 1785 2016-07-15 15:55 rest\src\com\xushouwei\action\UserAction.java
目录 0 2016-07-15 16:07 rest\src\com\xushouwei\bean\
目录 0 2016-07-15 16:07 rest\src\com\xushouwei\bean\sqlmapper\
文件 1265 2016-07-15 11:17 rest\src\com\xushouwei\bean\sqlmapper\user.xm
文件 1745 2016-07-15 11:22 rest\src\com\xushouwei\bean\User.java
目录 0 2016-07-15 16:07 rest\src\com\xushouwei\dao\
文件 414 2016-07-15 13:13 rest\src\com\xushouwei\dao\UserDao.java
文件 1833 2016-07-15 14:49 rest\src\com\xushouwei\dao\UserDaoImp.java
目录 0 2016-07-15 16:07 rest\src\com\xushouwei\service\
文件 417 2016-07-15 13:14 rest\src\com\xushouwei\service\UserService.java
文件 1211 2016-07-15 14:03 rest\src\com\xushouwei\service\UserServiceImp.java
文件 219 2016-07-15 16:09 rest\src\jdbc.properties
文件 371 2016-07-15 15:15 rest\src\mybatis.xm
文件 2908 2016-07-15 15:00 rest\src\spring.xm
文件 1153 2016-07-15 15:52 rest\src\struts.xm
目录 0 2016-07-15 16:07 rest\WebRoot\
............此处省略66个文件信息
相关资源
- openssl098e-0.9.8e-17.el6.centos.src.rpm
- 基于Hibernate与Struts2框架的整合项目之
- spring_gateway_security_webflux.rar
- springmvc 实体层自动生成工具
- (龙果学院)从无到有搭建中小型互
- (视频和源码)spring boot cloud实战租房
- SpringCloud微服务实战源代码
- Spring MVC 学习指南(第2版高清中文
- springboot+mybatis+layui
- springmvc_2020.rar
- 基于SpringBoot+SSM的酒店客房管理系统
- 基于SSM的校社联社团管理系统SpringM
- 基于springboot框架的宿舍管理系统设计
- app信息管理系统ssm框架
- Spring boot 2.2.2官方中文文档
- springboot实现将Excel导入数据库
- springboot+微信端登录demo
- springboot+vue.js搭建图书管理系统开源项
- springboot+mybatis后台vue.js实现前端的音
- 大觅网源码
- SpringCloud 15个完整
- 高清彩版 high performance spring 5(彩版)
- spring实战源码maven版
- springboot官方英文文档
- springmvc+netty实现聊天功能
- struts2自定义类型转换器
- SpringBoot实战.pdf推荐必读
- spring源码4.3(可直接导入eclipse)
- 最新 guns v5.1 文档
- 《Spring Boot实战》源代码
评论
共有 条评论