springboot
qq_34124060
这个作者很懒,什么都没留下…
展开
-
springboot Maven 打包可执行jar
Maven pom.xml 必须包含 [plain] view plain copy jar [html] view plain copy build> plugins> plugin> groupId>org.转载 2017-04-01 11:22:31 · 279 阅读 · 0 评论 -
欢迎使用CSDN-markdown编辑器
SpringBoot进行简单的单元测试转载 2017-03-16 15:18:06 · 206 阅读 · 0 评论 -
SpringBoot单元测试
引入maven依赖<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> 为类添加注解原创 2017-03-16 15:27:39 · 318 阅读 · 0 评论 -
springboot乐观锁
包依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> <version>1.2.6.RELEASE</version> </dep原创 2017-05-26 10:36:37 · 3751 阅读 · 0 评论 -
SpringBoot 定时任务
第一步: 在启动类中加入如下注解 @SpringBootApplication @EnableScheduling public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } }注意:@Enabl原创 2017-06-10 19:11:26 · 567 阅读 · 0 评论 -
SpringBoot 创建启动运行类
第一步:呃,大概就一步@Component @Order(value = 1) public class StartupRunner implements CommandLineRunner{ @Override public void run(String... strings) throws Exception { System.out.println("来来来,跑原创 2017-06-10 19:16:51 · 1145 阅读 · 0 评论