• 大小: 14.81MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-07-14
  • 语言: 其他
  • 标签: ssh  增删改查  

资源简介

这是一个用ssh框架写的增删改查的小程序,对初学者有帮助

资源截图

代码片段和文件信息

package com.jingan.index.action;

import java.util.List;

import javax.annotation.Resource;

import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Controller;

import com.jingan.index.bean.Student;
import com.jingan.index.services.IStudentServices;

/***
 * [说明/描述]
 * @author Mr.Li
 * @date 2016-2-17 下午3:22:18
 * @project 项目名称
 * @version 版本号
 * @see 相关类
 * @since 相关/版本
 */
@Controller   @Scope(“prototype“)
public class StudentAction {
@Resource(name=“studentServices“)
private IStudentServices studentServices;
private List studentlist;
private Student student;
private int sid;
/**
 * 
 * [描述信息] 查询所有的学生信息
 * @author 张彪
 * @date 2016-2-17 下午3:45:05 

 * @return liststudent 跳转到展示学生信息页面
 */
public String findallstudent(){
studentlist=studentServices.findallstudent();
return “liststudent“; 
}

public String addstudent(){
studentServices.addstudent(student);
return “add“;
}

public String deleteStudent(){
studentServices.deletestudent(sid);
return “delete“;
}

public String findstudent(){
student=studentServices.findstudent(sid);
return “findone“;
}

public String updatestudent(){
studentServices.updatestudent(student);
return “update“;
}

public List getStudentlist() {
return studentlist;
}

public void setStudentlist(List studentlist) {
this.studentlist = studentlist;
}

public Student getStudent() {
return student;
}

public void setStudent(Student student) {
this.student = student;
}

public int getSid() {
return sid;
}

public void setSid(int sid) {
this.sid = sid;
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        529  2016-02-16 17:33  test\.classpath

     文件        285  2016-02-16 17:33  test\.mymetadata

     文件       1747  2016-02-17 09:40  test\.project

     文件        500  2016-02-17 09:39  test\.settings\.jsdtscope

     文件        105  2016-02-17 16:33  test\.settings\org.eclipse.core.resources.prefs

     文件        364  2016-02-16 17:33  test\.settings\org.eclipse.jdt.core.prefs

     文件        450  2016-02-16 17:33  test\.settings\org.eclipse.wst.common.component

     文件        252  2016-02-16 17:33  test\.settings\org.eclipse.wst.common.project.facet.core.xml

     文件         49  2016-02-16 17:33  test\.settings\org.eclipse.wst.jsdt.ui.superType.container

     文件          6  2016-02-16 17:33  test\.settings\org.eclipse.wst.jsdt.ui.superType.name

     文件       1810  2016-02-17 16:50  test\src\com\jingan\index\action\StudentAction.java

     文件        451  2016-02-17 15:40  test\src\com\jingan\index\bean\student.hbm.xml

     文件        664  2016-02-17 16:31  test\src\com\jingan\index\bean\Student.java

     文件       1394  2016-02-17 16:26  test\src\com\jingan\index\dao\imp\StudentDao.java

     文件        553  2016-02-17 16:31  test\src\com\jingan\index\dao\IStudentDao.java

     文件       1126  2016-02-17 16:27  test\src\com\jingan\index\services\imp\StudentServices.java

     文件        534  2016-02-17 16:26  test\src\com\jingan\index\services\IStudentServices.java

     文件       1330  2016-02-17 15:08  test\src\ehcache.xml

     文件       1309  2016-02-17 15:08  test\src\struts.properties

     文件        270  2016-02-17 15:29  test\src\struts.xml

     文件        678  2016-02-17 16:42  test\src\struts_config\struts_student.xml

     文件       1206  2016-02-17 16:54  test\WebRoot\index.jsp

     文件        954  2016-02-17 16:28  test\WebRoot\login.jsp

     文件         36  2016-02-16 17:33  test\WebRoot\meta-INF\MANIFEST.MF

     文件       1247  2016-02-17 16:55  test\WebRoot\showone.jsp

     文件       1436  2016-02-17 16:50  test\WebRoot\showstudent.jsp

     文件       4138  2016-02-17 15:33  test\WebRoot\WEB-INF\applicationContext\applicationContext.xml

     文件       2347  2016-02-17 16:50  test\WebRoot\WEB-INF\classes\com\jingan\index\action\StudentAction.class

     文件        930  2016-02-17 16:44  test\WebRoot\WEB-INF\classes\com\jingan\index\bean\Student.class

     文件        451  2016-02-17 15:40  test\WebRoot\WEB-INF\classes\com\jingan\index\bean\student.hbm.xml

............此处省略81个文件信息

评论

共有 条评论