码迷,mamicode.com
首页 >  
搜索关键字:requestmapping    ( 1366个结果
Captcha生成及使用
@Controller@RequestMapping("/PictureCheckCode")public class ServletController { @RequestMapping public void pictureGenerate( HttpServletRequest ...
分类:其他好文   时间:2015-04-28 13:28:19    阅读次数:134
SpringMVC 类型转换错误自定义返回
在SpringMVC捕获异常只需要实现接口org.springframework.web.servlet.HandlerExceptionResolver,即可自定义返回异常,如:属性转换异常 @RequestMapping("/test") @ResponseBody public String str(Integer age) throws Exception { retur...
分类:编程语言   时间:2015-04-25 16:42:01    阅读次数:162
并发下,使用redis防止数据重复插入(数据库未对表字段设置唯一情况下)
@Controller @RequestMapping("/myTest") public?class?TestController?{ ????@Autowired(required?=?false) ????private?TestService?testService; ???? ????@Autowired ????priva...
分类:数据库   时间:2015-04-24 17:02:03    阅读次数:176
SpringMVC 自定义全局PropertyEditor
注入了@Controller与@RequestMapping需要的注解类 class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"/> class="org.springframework.web.servlet.mvc.annotation.Annota...
分类:编程语言   时间:2015-04-23 17:38:29    阅读次数:144
Spring 异步返回中文不乱码
@RequestMapping(value="/queryUser",method=RequestMethod.POST,produces="text/html;charset=UTF-8")<mvc:annotation-driven><mvc:message-convertersregister-defaults="true"><beanclass="org.springframework.http.converter.StringHttpMessageConverter"&..
分类:编程语言   时间:2015-04-23 13:48:26    阅读次数:142
spring boot MVC作为服务器端, apache.httpclient作为客户端的文件传输模式(demo代码)
最近做http协议下面的数据传输,总结一下1. 上传单个文件:服务器端代码: @RequestMapping(value ="/POST", method = RequestMethod.POST)@ResponseBodypublicString PostTest(Stringtest_data,...
分类:编程语言   时间:2015-04-23 12:55:26    阅读次数:184
Http请求中Content-Type讲解以及在Spring MVC中的应用
引言: 在Http请求中,我们每天都在使用Content-type来指定不同格式的请求信息,但是却很少有人去全面了解content-type中允许的值有多少,这里将讲解Content-Type的可用值,以及在Spring MVC中如何使用它们来映射请求信息。...
分类:编程语言   时间:2015-04-22 18:24:45    阅读次数:101
SpringMVC + Spring + MyBatis 学习笔记:在类和方法上都使用RequestMapping如何访问
系统:WIN8.1数据库:Oracle 11GR2开发工具:MyEclipse 8.6框架:Spring3.2.9、SpringMVC3.2.9、MyBatis3.2.8先看代码:@RequestMapping(value="manager")@Controller("managerControll...
分类:移动开发   时间:2015-04-21 20:30:48    阅读次数:239
微信公共号开发
1.进入这个链接http://mp.weixin.qq.com/debug/cgi-bin/sandbox?t=sandbox/login2.编写微信授权请求/** *微信接入首页(授权页) *@return *@throwsIOException */ @RequestMapping("index") publicvoidwxIndex(HttpServletRequestrequest,HttpServletResponseresponse,Stringsig..
分类:微信   时间:2015-04-21 09:57:39    阅读次数:259
SpringMVC 文件下载
第一种方法使用 HttpMessageConverter 下的 ResponseEntity 实现。@RequestMapping("/testHttpMessageDown") public ResponseEntity download(HttpServletRequest request...
分类:编程语言   时间:2015-04-20 18:14:15    阅读次数:193
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!