You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

SpringBootDemoHttpsApplication.java 445 B

123456789101112131415161718192021
  1. package com.xkcoding.https;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. /**
  5. * <p>
  6. * 启动类
  7. * </p>
  8. *
  9. * @author Chen.Chao
  10. * @date Created in 2020/1/12 10:31
  11. */
  12. @SpringBootApplication
  13. public class SpringBootDemoHttpsApplication {
  14. public static void main(String[] args) {
  15. SpringApplication.run(SpringBootDemoHttpsApplication.class, args);
  16. }
  17. }

一个用来深度学习并实战 spring boot 的项目,目前总共包含 66 个集成demo,已经完成 55 个。