资源简介

基于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

评论

共有 条评论