资源简介
基于SSH和mysql的学生管理系统,有sql数据库文件。
代码片段和文件信息
package com.lk.action;
import java.util.List;
import javax.annotation.Resource;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.Scope;
import org.springframework.context.support.ClassPathxmlApplicationContext;
import org.springframework.stereotype.Component;
import com.lk.model.Student;
import com.lk.model.User;
import com.lk.service.StudentManager;
import com.lk.service.UserManager;
import com.lk.vo.Info;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ModelDriven;
@Component(“student“)
@Scope(“prototype“)
public class StudentAction extends ActionSupport implements ModelDriven{
private Info info = new Info();
private StudentManager studentManager;
private List students;
public List getStudents() {
return students;
}
public void setStudents(List students) {
this.students = students;
}
public StudentManager getStudentManager() {
return studentManager;
}
@Resource(name=“studentManager“)
public void setStudentManager(StudentManager studentManager) {
this.studentManager = studentManager;
}
public Info getInfo() {
return info;
}
public void setInfo(Info info) {
this.info = info;
}
/**
* 增加学生信息
* @return
* @throws Exception
*/
public String add() throws Exception{
Student stu = new Student();
stu.setId(info.getId());
stu.setSid(info.getSid());
stu.setName(info.getName());
stu.setCollege(info.getCollege());
stu.setProfession(info.getProfession());
studentManager.add(stu);
return “success“;
}
/**
* 查询学生信息
* @return
* @throws Exception
*/
public String list() throws Exception{
this.students = this.studentManager.getStudents();
return “list“;
}
/**
* 获取需要删除学生信息的学号
* @return
* @throws Exception
*/
public String numberlistfordelete() throws Exception{
this.students = this.studentManager.getStudents();
return “numberlistfordelete“;
}
/**
* 获取需要修改学生信息的学号
* @return
* @throws Exception
*/
public String numberlistformodify() throws Exception{
this.students = this.studentManager.getStudents();
return “numberlistformodify“;
}
/**
* 删除学生信息
* @return
* @throws Exception
*/
public String delete() throws Exception{
studentManager.delete(Integer.parseInt(info.getSelect()));
return “delete“;
}
/**
* 更新学生信息
* @return
* @throws Exception
*/
public String modify() throws Exception{
Student stu = new Student();
stu.setCollege(info.getCollege());
stu.setName(info.getName());
stu.setProfession(info.getProfession());
stu.setSid(info.getSid());
System.out.println(stu.getCollege()+ “ “ +stu.getProfession() + “ “+ stu.getName()+“ “+ stu.getSid());
studentManager.update(stu.getCollege() stu.getProfession() stu.getName() stu.getSid());
return “modify“;
}
public object getModel() {
// T
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2016-07-20 00:21 stuInfoSystem_SSH_4\
文件 2950 2016-07-20 00:16 stuInfoSystem_SSH_4\.classpath
目录 0 2016-07-20 00:27 stuInfoSystem_SSH_4\.myeclipse\
文件 331 2012-11-24 18:20 stuInfoSystem_SSH_4\.myme
文件 1762 2016-07-20 00:16 stuInfoSystem_SSH_4\.project
目录 0 2016-07-20 00:16 stuInfoSystem_SSH_4\.settings\
文件 503 2016-07-20 00:16 stuInfoSystem_SSH_4\.settings\.jsdtscope
文件 1040 2012-11-24 18:20 stuInfoSystem_SSH_4\.settings\com.genuitec.eclipse.j2eedt.core.prefs
文件 364 2016-07-20 00:16 stuInfoSystem_SSH_4\.settings\org.eclipse.jdt.core.prefs
文件 567 2016-07-20 00:17 stuInfoSystem_SSH_4\.settings\org.eclipse.wst.common.component
文件 252 2016-07-20 00:16 stuInfoSystem_SSH_4\.settings\org.eclipse.wst.common.project.facet.core.xm
文件 49 2016-07-20 00:16 stuInfoSystem_SSH_4\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2016-07-20 00:16 stuInfoSystem_SSH_4\.settings\org.eclipse.wst.jsdt.ui.superType.name
目录 0 2016-07-20 00:26 stuInfoSystem_SSH_4\WebRoot\
目录 0 2012-11-24 18:19 stuInfoSystem_SSH_4\WebRoot\me
文件 39 2012-11-20 19:41 stuInfoSystem_SSH_4\WebRoot\me
目录 0 2016-07-20 00:14 stuInfoSystem_SSH_4\WebRoot\WEB-INF\
目录 0 2016-07-20 00:20 stuInfoSystem_SSH_4\WebRoot\WEB-INF\classes\
文件 2950 2016-07-20 00:20 stuInfoSystem_SSH_4\WebRoot\WEB-INF\classes\beans.xm
目录 0 2016-07-20 00:17 stuInfoSystem_SSH_4\WebRoot\WEB-INF\classes\com\
目录 0 2016-07-20 00:17 stuInfoSystem_SSH_4\WebRoot\WEB-INF\classes\com\lk\
目录 0 2016-07-20 00:17 stuInfoSystem_SSH_4\WebRoot\WEB-INF\classes\com\lk\action\
文件 3655 2016-07-20 00:17 stuInfoSystem_SSH_4\WebRoot\WEB-INF\classes\com\lk\action\StudentAction.class
文件 777 2016-07-20 00:17 stuInfoSystem_SSH_4\WebRoot\WEB-INF\classes\com\lk\action\StudentActionTest.class
文件 2181 2016-07-20 00:17 stuInfoSystem_SSH_4\WebRoot\WEB-INF\classes\com\lk\action\UserAction.class
目录 0 2016-07-20 00:17 stuInfoSystem_SSH_4\WebRoot\WEB-INF\classes\com\lk\dao\
文件 367 2016-07-20 00:17 stuInfoSystem_SSH_4\WebRoot\WEB-INF\classes\com\lk\dao\StudentDao.class
文件 286 2016-07-20 00:17 stuInfoSystem_SSH_4\WebRoot\WEB-INF\classes\com\lk\dao\UserDao.class
目录 0 2016-07-20 00:17 stuInfoSystem_SSH_4\WebRoot\WEB-INF\classes\com\lk\dao\impl\
文件 2908 2016-07-20 00:17 stuInfoSystem_SSH_4\WebRoot\WEB-INF\classes\com\lk\dao\impl\StudentDaoImpl.class
文件 2149 2016-07-20 00:17 stuInfoSystem_SSH_4\WebRoot\WEB-INF\classes\com\lk\dao\impl\UserDaoImpl.class
............此处省略96个文件信息
相关资源
- ssh整合sql server
- ssh框架的简单实现,可运行
- 宿舍管理系统ssh+mysql+论文
- 学生成绩管理系统(SSH+MYSQL)
- 毕业设计商城系统(论文+源码+sql文件
- SSH员工信息管理系统
- SSH实现在线考试系统demo
- ssh框架的学生成绩管理系统
- 在线考试系统源码
- 毕业设计SSHMYSQL.zip
- 基于ssh的人事管理系统
- SSH框架实现增删改查,Oracle数据库
- 设备资源管理系统ssh含sql
- 基于SSH的网上购物商城管理系统
- SSH项目完整-北大青鸟期末考试
- ssh图书管理系统源码
- SSH+Mysql整合开发Bookshop网上书店,适合
- 带事务回滚测试的SSH整合小案例(S
- ssh+教务管理系统
- SSH封装接口返回Json数据
- 基于ssh电影后台管理系统代码
- 可二次开发ssh+mysql运动会管理系统-带
- 基于eclipse旅游网站ssh带论文
- 基于ssh大学生社交平台
- ssh+mysql实现的超市进销存管理系统项
- 网上商城系统基于SSH框架连接MySQL.z
- 补充:ssm+shiro框架整合项目,完整的
- SSH框架整合简单
- SSH框架开发JBOA办公自动化管理系统含
- ssh+mysql实现crm客户管理系统
评论
共有 条评论