会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Alex_TD
博客园
首页
新随笔
联系
订阅
管理
公告
2020年2月23日
Springmvc===整合问题总结
摘要: 1. 过滤字符编码 org.spring <filter> <filter-name>characterEncoding</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filte
阅读全文
posted @ 2020-02-23 22:25 Alex_TD
阅读(295)
评论(0)
推荐(0)
编辑
Springmvc---整合(servlet jsp mybatis c3p0池化 mysql de
摘要: 1.导入包 <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <version>1.9.4</version> </dependency> <!-- https://mvnreposi
阅读全文
posted @ 2020-02-23 22:11 Alex_TD
阅读(203)
评论(0)
推荐(0)
编辑
Springmvc===JSON
摘要: 1.js : JSON.parse(json) Json.stringify(obj) 2.jackson: OjbectMapper json= new ObjectMapper() 解决乱码: @RequestMapping(value="createExcel",produces="plain
阅读全文
posted @ 2020-02-23 13:40 Alex_TD
阅读(107)
评论(0)
推荐(0)
编辑
Springmvc----处理乱码过滤器CharcterEncodingFilter
摘要: Springmvc 处理乱码过滤器CharcterEncodingFilter : web.xml <servlet-mapping> <servlet-name>mvc</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> <
阅读全文
posted @ 2020-02-23 12:57 Alex_TD
阅读(269)
评论(0)
推荐(0)
编辑
Springmvc---Controller(HttpServletRequest req,HttpServletResponse resp) 重定向和转发
摘要: 1.重定向和转发: redirect:"test" 相对路径 跳转路径 forward:/test 项目内 相对路径转发 路径不跳转,转发 2.controller ( req,resp,Model) |(req,resp,ModelMap) ModelMap extends LinkedModel
阅读全文
posted @ 2020-02-23 12:01 Alex_TD
阅读(475)
评论(0)
推荐(0)
编辑
Springmvc---2
摘要: 1.导入springmvc相关的jar包(框架servlet的 springwebmvc aop jdbc mybatis ) 2.配置web.xml,配置spring.xml (配置tomcat的入口DispatcherServlet 。doService(req,res)包含applicatio
阅读全文
posted @ 2020-02-23 10:40 Alex_TD
阅读(59)
评论(0)
推荐(0)
编辑