码迷,mamicode.com
首页 >  
搜索关键字:@RequestMapping    ( 1366个结果
第五章 查询性能优化之多极缓存
1.redis集中式缓存 //商品详情页浏览 @RequestMapping(value = "/get",method = {RequestMethod.GET}) @ResponseBody public CommonReturnType getItem(@RequestParam(name = ...
分类:其他好文   时间:2019-12-17 00:46:37    阅读次数:124
关于spring boot整合thymeleaf模板引擎
1.目录结构: 2.前端页面引用: 这里想说的是引用的默认出发点是在/static/下了 3.后端: 使用了mybatis分页插件 @RequestMapping("list") public String getList(Model model,HttpSession session, @Requ ...
分类:编程语言   时间:2019-12-14 11:43:54    阅读次数:85
SpringBoot注解
Controller @Api(tags = " ") @RestController @RequestMapping("/ / ") @Autowired @Qualifier(" ServiceImpl") private Service Service; @ApiOperation(" ") ...
分类:编程语言   时间:2019-12-11 19:44:30    阅读次数:106
获取SpringMVC中所有RequestMapping映射URL信息
SpringMVC启动的时候,会把接口信息收集在RequestMappingHandlerMapping中,故可以通过这个类,拿到全部的映射信息,Sample代码段如下: ...
分类:移动开发   时间:2019-12-08 20:19:15    阅读次数:115
文件下载
1.文件下载后端代码 /** * 初始化下载页面 * * @return */ @RequestMapping(value = "/initDownloadPage", method = RequestMethod.GET) public String initDownloadPage(Model ...
分类:其他好文   时间:2019-12-07 14:19:29    阅读次数:72
Controller类的方法上的RequestMapping一定要写在Controller类里吗?
使用Spring Cloud做项目的同学会使用Feign这个组件进行远程服务的调用,Feign这个组件采用模板的方式,有着优雅的代码书写规范。核心原理对Feign等相关注解进行解析,并提取信息,在Spring Boot工程启动时,通过反射生产Request的bean,并将提取的信息,设置到bean中 ...
分类:移动开发   时间:2019-12-06 13:47:11    阅读次数:157
6.2.3 reginst中的yzm
@RequestMapping("/reginst/{yzm}") public Object reginst(User user,@PathVariable String yzm) Object object = redisTemplate.opsForValue().get(user.getPh ...
分类:其他好文   时间:2019-12-05 18:49:12    阅读次数:103
请求参数的绑定
1.例如:ParamController.java /*请求参数的绑定*/ @RequestMapping("/testParam") public String testParam(String username,String password){ sout("执行了。。。"); sout("用户 ...
分类:其他好文   时间:2019-12-04 19:51:15    阅读次数:68
[转]Spring 注解大全与详解
Spring使用的注解大全和解释 注解解释 @Controller 组合注解(组合了@Component注解),应用在MVC层(控制层),DispatcherServlet会自动扫描注解了此注解的类,然后将web请求映射到注解了@RequestMapping的方法上。 @Service 组合注解(组 ...
分类:编程语言   时间:2019-11-28 16:27:16    阅读次数:64
java文件下载
@RequestMapping(value = "/downFile/downBusLine") @ResponseBody public void downBusLine(@RequestParam String filename, HttpServletResponse response) { ...
分类:编程语言   时间:2019-11-25 11:52:35    阅读次数:54
1366条   上一页 1 ... 15 16 17 18 19 ... 137 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!