上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 46 下一页
摘要: 参阅官方文档:https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#beans-factory-lifecycle 第一种方式:使用@PostConstruct注解,进行标注当前非init()名 阅读全文
posted @ 2019-09-03 21:25 星小梦 阅读(903) 评论(0) 推荐(0) 编辑
摘要: 参阅官方文档:https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#beans-factory-lifecycle 第一种方式:使用@PostConstruct注解,进行标注当前非init()名 阅读全文
posted @ 2019-09-03 21:23 星小梦 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 参阅:https://www.jianshu.com/p/ec3f0b0371e6 阅读全文
posted @ 2019-09-01 21:12 星小梦 阅读(1045) 评论(0) 推荐(0) 编辑
摘要: Thymeleaf 1.Formatter接口是当进行请求参数的封装时,会根据Formatter的泛型进行调用Parse方法进行格式化类型 2.IStandardConversionService是Thymeleaf的一个接口,进行数据转换或格式化的操作,使用需要通过${{}}或*{{}}进行使用, 阅读全文
posted @ 2019-08-31 22:35 星小梦 阅读(286) 评论(0) 推荐(0) 编辑
摘要: function方法调用call和apply的使用方式:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Function/call 阅读全文
posted @ 2019-08-31 00:16 星小梦 阅读(1089) 评论(1) 推荐(0) 编辑
摘要: 为啥需要调用本地静态方法 Thymeleaf模板里面有时候需要使用本地静态常量,要是每次都在控制层传一遍很麻烦 我们需要在Thymeleaf模板我们使用比如 1代表一年级,2代表二年级,3代表三年级等,需要在便签的title上使用。当然可以使用switch语句,但是这样很麻烦,写一大堆标签。 简单的 阅读全文
posted @ 2019-08-25 22:07 星小梦 阅读(1483) 评论(0) 推荐(0) 编辑
摘要: 当需要过滤实体类的数据时,根据伪删除字段进行过滤,需要使用Hibernate提供的@Where注解 使用方式: @Entity(name = "Account") @Where( clause = "active = true" ) public static class Account { @Id 阅读全文
posted @ 2019-08-23 23:32 星小梦 阅读(1211) 评论(0) 推荐(0) 编辑
摘要: SpringBoot集成Shiro的时候,出现异常:Public Key Retrieval is not allowed 解决方案是: 阅读全文
posted @ 2019-08-21 23:22 星小梦 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 使用SpringDataJpa设置字段的默认值约束的2种方式 阅读全文
posted @ 2019-08-18 22:39 星小梦 阅读(4206) 评论(0) 推荐(0) 编辑
摘要: SpringBoot项目使用SpringDataJpa提供的审计功能的使用流程 SpringDataJpa提供审计注解:@CreatedBy,@LastModifiedBy,@CreatedDate,@LastModifiedDate 第一步:在SpringBoot启动类上添加@EnableJpaA 阅读全文
posted @ 2019-08-18 21:56 星小梦 阅读(3650) 评论(0) 推荐(1) 编辑
上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 46 下一页