|
@ -26,9 +26,13 @@ package cn.stylefeng.guns.modular.controller;
|
|
|
|
|
|
import cn.stylefeng.guns.core.pojo.response.ResponseData;
|
|
|
import cn.stylefeng.guns.core.pojo.response.SuccessResponseData;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.jdbc.core.JdbcTemplate;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
|
* 一个示例接口
|
|
|
*
|
|
@ -36,11 +40,17 @@ import org.springframework.web.bind.annotation.RestController;
|
|
|
* @date 2020/4/9 18:09
|
|
|
*/
|
|
|
@RestController
|
|
|
@RequestMapping("/test")
|
|
|
@RequestMapping("/open")
|
|
|
public class ExampleController {
|
|
|
|
|
|
@Autowired
|
|
|
private JdbcTemplate jdbcTemplate;
|
|
|
|
|
|
@RequestMapping("/niceDay")
|
|
|
public ResponseData niceDay() {
|
|
|
|
|
|
List<String> list = jdbcTemplate.queryForList("SELECT version()",String.class);
|
|
|
|
|
|
return new SuccessResponseData("nice day");
|
|
|
}
|
|
|
|