摘要: 服务器端返回的是文本,客户端得到文本后将文本转换成json就可以了,服务器端将对象转换成json 的文本形式,并且需要设定文本的类型为text/plain,charset=UTF-8所以在 application-context 中添加StringConverter及jsonConvert的bean... 阅读全文
posted @ 2015-01-03 19:24 oftenlin 阅读(7960) 评论(0) 推荐(0) 编辑
摘要: 在Web-xml 配置添加过滤器 CharacterEncodingFilter org.springframework.web.filter.CharacterEncodingFilter encoding UTF-8 CharacterEncodingFilter /* 阅读全文
posted @ 2015-01-03 19:23 oftenlin 阅读(211) 评论(0) 推荐(0) 编辑
摘要: Spring 通过Controller 向 View 传值的方法有以下四种HttpServletRequestModelAndViewMap mapModel model第一种需要参数HttpServletRequest 返回值是jsp页面@RequestMapping("/query1.do")p... 阅读全文
posted @ 2015-01-03 19:22 oftenlin 阅读(923) 评论(0) 推荐(0) 编辑
摘要: Spring 中配置扫描器建立Controller 类@Controller@RequestMapping(value="/sys/")public class RegController { @RequestMapping(value="reg.do",method=RequestMethod.P... 阅读全文
posted @ 2015-01-03 19:20 oftenlin 阅读(5368) 评论(0) 推荐(0) 编辑
摘要: (一)通过 name 来一一映射(默认)(二)通过简单url 来指定映射,key 表示访问url value 是bean的ID(三)通过控制类的类名控制器,访问时类名首字母需要小写 loginController 账号: 密码: (二)访问时将action 的ur... 阅读全文
posted @ 2015-01-03 19:19 oftenlin 阅读(1851) 评论(0) 推荐(0) 编辑
摘要: 1. 把所需jar拷贝到工程目录下WEB-INF/lib2. 配置WEB.xml,配置前端控制器 org.springframework.web.servlet.DispatcherServlet springmvc org.springframework.web.servlet.Dis... 阅读全文
posted @ 2015-01-03 19:16 oftenlin 阅读(252) 评论(0) 推荐(0) 编辑