• 大小: 293KB
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2021-06-09
  • 语言: Java
  • 标签: SSM  

资源简介

框架已配好,拿来即用,含有mybatis使用代码反转java实体类及mybatis映射文件。

资源截图

代码片段和文件信息

package com.lukuan.wei.controller;

import java.util.List;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import com.lukuan.wei.entity.DeptT;
import com.lukuan.wei.service.DeptService;
import com.lukuan.wei.utils.Msg;

@Controller
public class DeptController{

@Autowired
DeptService deptService;

@RequestMapping(“/depts“)
@ResponseBody
public Msg getDepts() {

Msg msg = new Msg();
try {

List list = deptService.getDepts();
msg = Msg.success().add(“list“ list);
return msg;

}catch(Exception e) {
e.printStackTrace();
msg = Msg.fail();
return msg;
}
}
}

评论

共有 条评论