
springmVC
Jinx_Q
这个作者很懒,什么都没留下…
展开
-
微信开发-SpringMVC开发者身份验证
package com.tgb.web; import java.io.IOException; import java.io.PrintWriter; import java.util.Date; import java.util.Map; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet原创 2014-11-05 12:17:54 · 2197 阅读 · 0 评论 -
@ResponseBody不返回null对象及变量
<!-- 添加注解驱动 --> <mvc:annotation-driven > <mvc:message-converters register-defaults="true"> <!-- @ResponseBody 不返回空对象及变量 --> <bean class="org.springframework.http.converter.json.Mappi原创 2016-05-18 09:58:55 · 6483 阅读 · 0 评论 -
SpringMVC接受返回JSON数组
java代码: @Controller @RequestMapping("/json") public class JsonTest { @RequestMapping(value="/user", method = RequestMethod.GET) public @ResponseBody User getJson() {原创 2014-08-13 16:20:20 · 2759 阅读 · 0 评论 -
SpringMVC欢迎页设置/index
常规的servlet欢迎页使用如下:<welcome-file-list> <welcome-file>index.html</welcome-file> </welcome-file-list>那么其中的index.html一般都是作为静态html存在 那么不带后缀的RequestMapping作为欢迎页,那么需要将/index这个路径注册到原始的servlet中,而原始的servl原创 2017-03-08 09:30:29 · 6361 阅读 · 0 评论 -
SpringMVC配置html视图渲染器
以前的项目总是将页面映射到一个.jsp文件上,个人做了很久前端之后,看到jsp总感觉不友好,所以就把页面渲染方式改成了.html html视图渲染器的核心是 1.首先配置web.xml (不属于这次配置的部分已经删除)<!--引入外部的spring配置文件--> <context-param> <param-name>contextConfigLocation</param-na原创 2017-04-01 13:30:12 · 9060 阅读 · 0 评论