SpringBoot-基础

启动应用

依赖及启动类


    org.springframework.boot
    spring-boot-starter-web

/**
 * 启动引导类
 */
@SpringBootApplication
public class Application {
    
    public static void main(String[] args) {
        SpringApplication.run(Application.class);
    }

}

controller访问入口

@RestController
@RequestMapping("/hello")
public class HelloController {
  
    @GetMapping("/test")
    public String test() {
        return "ok";
    }

}

配置信息读取

@Value-针对单个参数配置读取

只能读取application配置文件中的参数,如若没有配置则启动失败。建议添加默认值

@Configuration
@Data
public class JdbcConfig {
    @Value("${jdbc.url:默认值}")
    private String url;
    @Value("${jdbc.driverClassName}")
    private String driverClassName;
    @Value("${jdbc.username}")
    private String userName;
    @Value("${jdbc.password}")
    private String password;
}

添加配置文件jdbc.properties

jdbc.url=url
jdbc.driverClassName=driver
jdbc.username=username
jdbc.password=password

通过jdbcConfig即可获取配置信息

@Autowired
private JdbcConfig jdbcConfig;

@ConfigurationProperties 属性注入方式

@ConfigurationProperties从application的配置文件读取配置信息,prefix表示前缀,类的变量名与配置文件配置项做松散绑定

/**
 * 属性注入方式,@ConfigurationProperties从application的配置文件读取配置信息,prefix表示前缀,类的变量名与配置文件配置项做松散绑定
 */
@Component
@ConfigurationProperties(prefix = "jdbc")
@Data
public class JdbcProperties {
    private String url;
    private String driverClassName;
    private String userName;
    private String password;
}

在application配置文件中添加配置

jdbc.url=url
jdbc.driverClassName=driver
jdbc.username=username
jdbc.password=password

通过jdbcProperties即可获取配置信息

@Autowired
private JdbcProperties jdbcProperties;

编译idea有提示添加spring-boot-configuration-processor依赖,做idea属性提示用。


    org.springframework.boot
    spring-boot-configuration-processor
    true

@PropertySource指定读取某个配置文件信息

可以配合@Value与@ConfigurationProperties一起使用

@Component
@PropertySource("classpath:jdbc.properties")
@ConfigurationProperties(prefix = "jdbc")
@Data
public class JdbcProperties {
    private String url;
    private String driverClassName;
    private String userName;
    private String password;
}

区分不同环境的参数

1、分别通过以下文件来表示:开发、生产的配置信息
application-dev.propertiesapplication-pro.properties
2、激活指定profile
方法一:在application.properties指定:
spring.profiles.active=dev
方法二:修改服务的启动参数
-Dspring.profiles.active=pro
方法三:自己本地启动测试时,可以添加启动参数
java -jar xxxx.jar --spring.profiles.active=dev

ApplicationContextAware

从ApplicationContextAware获取ApplicationContext上下文的情况

@Component
@Order(1)
@Slf4j
public class SpringContextHolder implements ApplicationContextAware {
    
    private ApplicationContext mApplicationContext;
    
    /**
     * 注入ApplicationContext
     *
     * @param applicationContext
     * @throws BeansException
     */
    @Override
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
        mApplicationContext = applicationContext;
        log.info("获取ApplicationContext");
    }
}

ApplicationRunner、CommonCommandLineRunner

应用服务启动时,加载一些数据和执行一些应用的初始化动作。SpringBoot提供了CommandLineRunner和ApplicationRunner接口。当接口有多个实现类时,提供了@order注解实现自定义执行顺序,也可以实现Ordered接口来自定义顺序。数字越小,优先级越高,两者的区别在于:ApplicationRunner中run方法的参数为ApplicationArguments,而CommandLineRunner接口中run方法的参数为String数组。想要更详细地获取命令行参数,那就使用ApplicationRunner接口

@Component
@Order(1)
@Slf4j
public class SpringContextHolder implements ApplicationRunner, ApplicationContextAware {

    private ApplicationContext mApplicationContext;

    /**
     * 注入ApplicationContext
     *
     * @param applicationContext
     * @throws BeansException
     */
    @Override
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
        mApplicationContext = applicationContext;
        log.info("获取ApplicationContext");
    }

    /**
     * 容器初始化完成
     *
     * @param args
     * @throws Exception
     */
    @Override
    public void run(ApplicationArguments args) throws Exception {
        log.info("容器初始化完成-SpringContextHolder");
    }
}
@Component
@Order(10)
@Slf4j
public class CommonCommandLineRunner implements CommandLineRunner {

    @Override
    public void run(String... args) throws Exception {
        log.info("容器初始化完成-CommonCommandLineRunner");
    }
}

自动配置简介

跟进SpringApplication.run()方法后,有org.springframework.core.io.support.SpringFactoriesLoader#loadFactoryNames方法,它会加载META-INF/spring.factories配置中的类,在spring-boot-autoconfigure-x.x.x.RELEASE包中正在SpringBoot默认已经集成的架框。如果需要修改默认集成的框架配置只需要做自己自定义的配置。如SpringMVC有:WebMvcAutoConfiguration和WebMvcProperties,Jackson有:JacksonAutoConfiguration和JacksonProperties。


SpringBoot-基础_第1张图片
SpringBoot整合第三方架框.png

获取应用jar中的资源文件

Resource resource = new ClassPathResource("/secretKey/public.key");
byte[] bdata = FileCopyUtils.copyToByteArray(resource.getInputStream());
String data = new String(bdata);

你可能感兴趣的:(SpringBoot-基础)