一致以来都是用 http://127.0.0.1:8888/getPhoto?imgUrl=1.jpg 的形式获取数据,今天突然要 http://127.0.0.1:8888/getPhoto/1.jpg 这样获取图片数据,竟然有点懵逼了。 直接贴代码: @RequestMapping(value ...
分类:
编程语言 时间:
2020-05-12 20:25:38
阅读次数:
159
若不对异常进行处理 @Controller@RequestMapping("/exceptioncontroller")public class ExceptionController { @RequestMapping("/exc") public String exc(){ int a = 1/ ...
分类:
编程语言 时间:
2020-05-11 21:50:41
阅读次数:
67
@RequestMapping(value = "/exportXls") public void exportXls(@RequestParam String zcq, HttpServletRequest request, HttpServletResponse response) { List ...
分类:
编程语言 时间:
2020-05-11 14:54:03
阅读次数:
68
```java @RequestMapping("/test1") public ResponseEntity testControllerAdvice(String id) { if (StringUtils.isEmpty(id)) { throw new UserNotExistExcepti... ...
分类:
其他好文 时间:
2020-05-02 00:27:45
阅读次数:
74
首先在controller中大部分注解都是web包的,注解报错大多因为web包的问题 @PostMapping=@RequestMapping(method=post) @GetMapping=@RequestMapping(method=get) 这三个是用于接收url请求的 一般来说在sprin ...
分类:
移动开发 时间:
2020-04-28 22:56:53
阅读次数:
64
第2 章 @RequestMapping注解 2.1 @RequestMapping 映射请求注解 2.1.1 @RequestMapping 概念 1) SpringMVC使用@RequestMapping注解为控制器指定可以处理哪些 URL 请求 2) 在控制器的类定义及方法定义处都可标注 @R ...
分类:
移动开发 时间:
2020-04-28 12:50:28
阅读次数:
71
场景是用户表,角色表,权限表做权限管理; users表 role表 permission表 中间表users-role 中间表role-permission 查询用户没有的角色 在controller中 @RequestMapping("/findUserByIdAndAllRole.do") pu ...
分类:
其他好文 时间:
2020-04-27 22:29:37
阅读次数:
68
一、Spring MVC 相关注解 1、@RequestMapping (1)功能: 将 HTTP 请求 与 请求处理类中的方法 进行映射。 通过 RequestMappingHandlerMapping 与 RequestMappingHandlerAdapter 两个类来支持该注解。 (2)常用 ...
分类:
编程语言 时间:
2020-04-27 19:38:46
阅读次数:
67
1.多参数Map接收 1 @RequestMapping(value = "/{version}/{cate}/{article}",method = RequestMethod.GET) 2 public String dynApiDemo(@PathVariable Map<String, St ...
分类:
移动开发 时间:
2020-04-25 16:45:28
阅读次数:
310
@RequestMapping(value = "/competitorPageList" ) public String competitorPageList(Model model, ) { Long currentUserId = (Long) SecurityUtils.getSubject ...
分类:
其他好文 时间:
2020-04-24 14:41:05
阅读次数:
270