
spring
_我要早睡晚起
忙忙碌碌,碌碌无为。
展开
-
Spring Data JPA 常用注解 @Query、@NamedQuery
转载自:https://www.cnblogs.com/cnblog-long/p/7425964.html1、@Transient@Transient表示该属性并非一个到数据库表的字段的映射,ORM框架将忽略该属性;如果一个属性并非数据库表的字段映射,就务必将其标示为@Transient,否则ORM框架默认其注解为@Basic;//表示该字段在数据库表中没有@Transi...转载 2019-08-09 17:27:03 · 1158 阅读 · 0 评论 -
springboot异步
需要在启动类里添加注解开启异步@EnableAsyncimport org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.context.annotation.C...原创 2019-07-19 16:16:44 · 122 阅读 · 0 评论