资源简介
基于SSM框架的完整项目 Spring+SpringMVC+Mybatis+mysql 前段bootstrap 简单的一个后台管理系统
代码片段和文件信息
package com.controller;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
import com.entity.Community;
import com.service.CommunityService;
@Controller
// 定义该Controller的根访问路径 /admin
@RequestMapping(“/community“)
public class CommunityController {
// 注入UserService
@Autowired
private CommunityService communityService;
/**
*
* @param: @return
* @param: @throws Exception
* @return: ModelAndView
* @author zhanglei
* @Date 2016年9月3日 下午2:35:53
* @Description: 显示小区列表
*/
@RequestMapping(“/communitylist“)
public ModelAndView communitylist(String serach) throws Exception {
ModelAndView modelAndView = new ModelAndView();
Community community = new Community();
community.setCname(serach);
List communityList = communityService
.findCommunityList(community);
modelAndView.addobject(“communityList“ communityList);
modelAndView.setViewName(“community/admin_community_list“);
return modelAndView;
}
/**
*
* @param: @return
* @param: @throws Exception
* @return: String
* @author zhanglei
* @Date 2016年11月12日 上午11:08:49
* @Description: 显示添加小区页面
*/
@RequestMapping(“/add“)
public String add() throws Exception {
return “community/admin_community_add“;
}
/**
*
* @param: @param request
* @param: @param cname
* @param: @param address
* @param: @return
* @param: @throws Exception
* @return: String
* @author zhanglei
* @Date 2016年11月12日 上午11:09:04
* @Description: 添加小区
*/
@RequestMapping(“/add_do“)
public String add_do(HttpServletRequest request String cname
String address) throws Exception {
Community community = new Community();
community.setCname(cname);
community.setAddress(address);
community.setIsdelete(0);
communityService.add(community);
return “forward:communitylist.action“;
}
/**
*
* @param: @param id
* @param: @return
* @param: @throws Exception
* @return: ModelAndView
* @author zhanglei
* @Date 2016年11月12日 上午11:09:21
* @Description: 显示编辑小区页面
*/
@RequestMapping(“/edit“)
public ModelAndView edit(Integer id) throws Exception {
ModelAndView modelAndView = new ModelAndView();
Community communityinf = communityService.findCommunityById(id);
modelAndView.addobject(“communityinf“ communityinf);
modelAndView.setViewName(“community/admin_community_edit“);
return modelAndView;
}
/**
*
* @param: @param request
* @param: @param id
* @param: @param cname
* @param: @param address
* @param: @return
* @param: @throws Exception
* @return: String
* @author zhanglei
* @Date 2016年11月12日 上午11:09:34
* @Description: 编辑小区信息
*/
@RequestMa
相关资源
- SSM框架的分页模糊查询代码(精)
- ssm框架--spring mvc实现文件上传
- 基于SSM+Mysql的银行用户管理系统
- SSM框架+mybatis自动生成代码
- SSM框架实现简单用户信息管理系统
- 家庭财务管理系统SpringMVC3+Spring3+Myb
- springmvc+jdbctemplate+mysql(采用注解方式
- SSM两表增删查
- ssmCrudOracleDemo
- 基于SSM的简单的增删改查源代码+SQL新
- 一个使用SSM最最初级代码实现的登录
- SSM-文件上传和,存储信息到数据库
- spring+Mybatis+SpringMVC资源整合增删改查
- 网页版在线音乐系统
- ssm+easyui+websocket+shiro验证+webservice
- 图书馆管理系统(ssmmysql).zip
- maven+springMVC+mybatis+mysql+Bootstrap-Admin-
- SpringMVC+Mysql详解
- 基于springmvc+mybatis+spring+maven+mysql的网
- spring+springmvc+mybatis完善的增删改查,
- SSM学生成绩信息管理系统
- 简单进销存管理系统.rar
- SSM框架开发超市订单管理系统包含M
- ssm+mysql完整整合项目
- MyBatis通过 JDBC连接 SQL server 数据库简
- MyBatis通过 JDBC连接 PostgreSQL数据库 最
- spring-boot集成mybtis+druid实现hive/mysql多
- SSM+Echarts+Mysql实现的从数据库获取数据
- 网上书店SSM+Bootstrap+Mysql
- ssm后台管理系统框架(Spring mvc + myb
评论
共有 条评论