
spring
csdn_meng
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
spring boot中使用LdapTemplate操作ldap
配置LdapTemplateimport org.springframework.beans.factory.annotation.Autowired;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.ldap.core.LdapTemplate;import org.s.原创 2021-07-08 14:05:25 · 2010 阅读 · 1 评论 -
Spring自定义属性转换器
自定义属性转换器首先新建一个类继承PropertyEditorSupport然后重新setAsText(String text);方法最后在Spring配置文件中配置该类的引用·示例代码·/***自定义一个时间转换器*/public class UtilDatePropertyEditor extends PropertyEditorSupport{ //定义时间格式的字符串原创 2017-11-01 15:03:16 · 11499 阅读 · 0 评论 -
spring boot jackson 日期格式化字符串踩坑
yml配置文件:spring: jackson: date-format: yyyy-MM-dd HH:mm:ss #日期格式化 time-zone: GMT+8 #时区 locale: zh_CN #国际化日期格式化字符串:yyyy-MM-dd HH:mm:ss,之前我将HH写成hh发现时区正确但是日期是12小时制的,最后改为HH变回24小时制...原创 2019-04-02 14:14:37 · 12795 阅读 · 0 评论