资源简介

(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.xml
     文件          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.xml
     文件        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.xml
     文件        2908  2016-07-15 15:00  rest\src\spring.xml
     文件        1153  2016-07-15 15:52  rest\src\struts.xml
     目录           0  2016-07-15 16:07  rest\WebRoot\
............此处省略66个文件信息

评论

共有 条评论