
我的代码库
李二的Blog
这个作者很懒,什么都没留下…
展开
-
SpringMVC-解决post提交中文乱码和get中文乱码问题(post-过滤器get-重新编码)
问题:中文乱码问题 1、post乱码<!-- 解决post乱码问题 --> <filter> <filter-name>CharacterEncodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFi...原创 2018-04-08 20:47:37 · 312 阅读 · 0 评论 -
配置Spring日期转换器
日期转换器 创建一个全局日期转换器,将这个转化器加载到注解驱动上,如果不放在这,那么需要手动配置适配器的时候装配上这个转换器: 全局日期转化字符串转日期类型:import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; import or...原创 2018-04-08 22:02:00 · 732 阅读 · 0 评论 -
SpringMVC常见的应用(文件上传设置、json交互、restful风格编码小代码)
SpringMVC常见应用 1、@RequestMapping 此注解放在类上用于窄化请求、防止重名@Controller @RequestMapping("item") public class ItemsController { @Autowired private ItemsService itemsService; @Request...原创 2018-04-11 22:20:59 · 362 阅读 · 0 评论 -
pageHelper的使用
代码库:只为以后更有效率的工作 maven: <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> <version>${pagehelper.version...原创 2018-04-27 21:45:32 · 330 阅读 · 0 评论 -
FastDFS相关的上传工具类
package com.taotao.utils; import org.csource.common.NameValuePair; import org.csource.fastdfs.ClientGlobal; import org.csource.fastdfs.StorageClient1; import org.csource.fastdfs.StorageServer; import...翻译 2018-05-20 09:35:34 · 457 阅读 · 0 评论