zoukankan      html  css  js  c++  java
  • springboot 的常用操作

    1. 使用@Value注解,可以直接将属性值注入到你的beans中,并通过Spring 的Environment抽象或绑定到结构化对象来访问。

    import org.springframework.stereotype.*
    import org.springframework.beans.factory.annotation.*
    @Component
    public class MyBean {
    @Value("${name}")
    private String name;
    // ...
    }

    2. 配置随机值

    my.secret=${random.value}
    my.number=${random.int}
    my.bignumber=${random.long}
    my.number.less.than.ten=${random.int(10)}
    my.number.in.range=${random.int[1024,65536]}

    3. @ConfigurationProperties 

    @ConfigurationProperties(prefix="my")
    public class Config {
    private List<String> servers = new ArrayList<String>();
    public List<String> getServers() {
    return this.servers;
    }
    }

    my.servers[0]=dev.bar.com
    my.servers[1]=foo.bar.com

    4.Profiles

       Spring Profiles提供了一种隔离应用程序配置的方式,并让这些配置只能在特定的环境下生效。任何@Component或 @Configuration都能被@Profile标记,从而限制加载它的时机。

    @Configuration
    @Profile("production")
    public class ProductionConfiguration {
    // ...
    }
  • 相关阅读:
    multition pattern
    singleton pattern
    strategy pattern
    设置Activity的属性
    iphone自动旋转与调整大小
    游戏编程从哪里开始呢
    TTF字体文件使用
    TextMate介绍
    ios程序崩溃处理
    ios笔试题
  • 原文地址:https://www.cnblogs.com/jishan-coder/p/7731548.html
Copyright © 2011-2022 走看看