1.@RestController 与 @RequestMapping 注解 @RestController : return 内容为字符串 @RequestMapping:return 内容为方法或者页面 2.mvn:spring-boot:run 指令使用(执行挺消耗时间的,而且每次执行该指令还 ...
分类:
编程语言 时间:
2021-06-18 19:53:59
阅读次数:
0
很久以前遇到过这样的问题,最近再次遇到,做个记录。核心代码如下(这里采用Excel导出是EasyPoi): @RequestMapping("/downloadPost") public void downloadPost(HttpServletResponse response) { try { ...
分类:
编程语言 时间:
2021-06-05 17:50:20
阅读次数:
0
单独json化一个对象,压缩为null的字段 @RequestMapping("/toDoListApproval") public void toDoListApproval(String id, HttpServletResponse response) throws Exception { O ...
分类:
编程语言 时间:
2021-06-02 18:44:34
阅读次数:
0
1 finishBeanFactoryInitialization->preInstantiateSingletons 2 3 在preInstantiateSingletons的getBean()的方法中会实例化带有@RequestMapping、@Controller、@RestControll ...
分类:
移动开发 时间:
2021-06-02 12:52:31
阅读次数:
0
1、controller中的方法 /** * 获取区域树 * @return */ @ResponseBody @RequestMapping("/getAreaInfoTree") public List<AreaInfo> getAreaInfoTree(){ List<AreaInfo> re ...
分类:
编程语言 时间:
2021-06-02 12:47:27
阅读次数:
0
三种获取登陆信息方式 @RequestMapping("/user/info") @ResponseBody public Object userInfo(Authentication authentication) { return authentication.getPrincipal(); } ...
分类:
编程语言 时间:
2021-05-24 01:48:36
阅读次数:
0
@RequestMapping(value = "/downfile", method = RequestMethod.GET) public void downfile(HttpServletRequest request, HttpServletResponse response) { try ...
分类:
编程语言 时间:
2021-05-24 00:28:07
阅读次数:
0
@PathVariable 映射 URL 绑定的占位符通过 @PathVariable 可以将 URL 中占位符参数绑定到控制器处理方法的入参中:URL 中的 {xxx} 占位符可以通过 @PathVariable(“xxx”) 绑定到操作方法的入参中。 一般与@RequestMapping(met ...
分类:
其他好文 时间:
2021-05-03 13:00:42
阅读次数:
0
@GetMapping 用于将HTTP GET请求映射到特定处理程序方法的注释。具体来说,@GetMapping是一个作为快捷方式的组合注释 @RequestMapping(method = RequestMethod.GET)。 @PostMapping 用于将HTTP POST请求映射到特定处理 ...
分类:
移动开发 时间:
2021-04-24 13:49:39
阅读次数:
0
记录一下java实现文件的上传、下载、删除的功能demo; /** * Controller */ @Slf4j @RestController @RequestMapping public class FileController { @Resource IFileService fileServ ...
分类:
编程语言 时间:
2021-04-13 12:53:13
阅读次数:
0