
spring boot
lgrason
干不了,谢谢!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
SpringBoot@Scheduled注解配置
一、话不多说,上代码 import org.springframework.context.annotation.Configuration; import org.springframework.scheduling.annotation.EnableScheduling; import org.springframework.scheduling.annotation.SchedulingCo...原创 2020-04-12 16:41:26 · 364 阅读 · 0 评论 -
SpringBoot@Async注解配置
一、话不多说,上代码 import org.springframework.context.annotation.Configuration; import org.springframework.scheduling.annotation.AsyncConfigurer; import org.springframework.scheduling.annotation.EnableAsync; ...原创 2020-04-12 16:12:15 · 367 阅读 · 0 评论 -
SpringBoot实体类配置、Jpa查询、lombok注解整合笔记
1、多对一与一对多 import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.OneToMany; import jav...原创 2019-12-28 00:07:21 · 629 阅读 · 0 评论