跳到主要内容

4. 应用配置

Micronaut 中的配置灵感来自 Spring Boot 和 Grails,将来自多个源的配置属性直接集成到核心 IoC 容器中。

默认情况下,可以在 Java 属性、YAML、JSON 或 Groovy 文件中提供配置。约定是搜索名为 application.ymlapplication.propertiesapplication.jsonapplication.groovy 的文件。

此外,与 Spring 和 Grails 一样,Micronaut 允许通过系统属性或环境变量覆盖任何属性。

每个配置源都使用 PropertySource 接口进行建模,并且该机制是可扩展的,允许实现其他 PropertySourceLoader 实现。

4.1 环境

应用程序环境由 Environment 接口建模,该接口允许在创建 ApplicationContext 时指定一个或多个唯一的环境名称。

初始化环境

ApplicationContext applicationContext = ApplicationContext.run("test", "android");
Environment environment = applicationContext.getEnvironment();

assertTrue(environment.getActiveNames().contains("test"));
assertTrue(environment.getActiveNames().contains("android"));

活动环境名称允许根据环境加载不同的配置文件,还可以使用 @Requires 注解有条件地加载 bean 或 bean @Configuration 包。

此外,Micronaut 还试图检测当前的环境。例如,在 Spock 或 JUnit 测试中,TEST 环境会自动激活。

可以使用 micronaut.environments 系统属性或 MICRONAUT_ENVIRONMENTS 环境变量指定其他活动环境。这些被指定为逗号分隔的列表。例如:

指定环境

$ java -Dmicronaut.environments=foo,bar -jar myapp.jar

以上内容激活了名为 foobar 的环境。

最后,还会检测云环境名称。详细信息,参阅云配置部分。

环境优先级

Micronaut 根据指定的环境加载属性源,如果特定于某个环境的多个属性源中存在相同的属性键,则环境顺序将确定要使用的值。

Micronaut 使用以下层次结构进行环境处理(从最低到最高优先级):

  • 推断的环境
  • micronaut.environments 系统属性中的环境
  • MICRONAUT_Environments 环境变量中的环境
  • 通过应用程序上下文生成器显式指定的环境
注意

也适用于 @MicronautTest(environments = …​)

禁用环境检测

通过将 micronaut.env.deuction 系统属性或 MICRONAUT_ENV_DEDUCTION 环境变量设置为 false,可以禁用环境的自动检测。这防止了 Micronaut 在仍然使用如上所示专门提供的任何环境的情况下检测当前环境。

通过系统属性禁用环境检测

$  java -Dmicronaut.env.deduction=false -jar myapp.jar

或者,你也可以在设置应用程序时使用 ApplicationContextBuilderdeduceEnvironment 方法禁用环境推断。

通过 ApplicationContextBuilder 禁用环境推断

@Test
public void testDisableEnvironmentDeductionViaBuilder() {
ApplicationContext ctx = ApplicationContext.builder()
.deduceEnvironment(false)
.properties(Collections.singletonMap("micronaut.server.port", -1))
.start();
assertFalse(ctx.getEnvironment().getActiveNames().contains(Environment.TEST));
ctx.close();
}

默认环境

Micronaut 支持一个或多个默认环境的概念。默认环境是指只有在没有明确指定或推导其他环境的情况下才应用的环境。环境可以通过应用程序上下文生成器 Micronaut.build().environments(…​) ,由 micronaut.environments 系统属性或 MICRONAUT_ENVIRONMENTS 环境变量显式指定。环境可以推断为自动应用适合于云部署的环境。如果通过上述任何方式找到环境,则不会应用默认环境。

要设置默认环境,请包含一个实现 ApplicationContextConfigurer 并用 ContextConfigurer 进行注解的公共静态类:

public class Application {

@ContextConfigurer
public static class DefaultEnvironmentConfigurer implements ApplicationContextConfigurer {
@Override
public void configure(@NonNull ApplicationContextBuilder builder) {
builder.defaultEnvironments(defaultEnvironment);
}
}

public static void main(String[] args) {
Micronaut.run(Application.class, args);
}
}
注意

以前,我们建议使用 Micronaut.defaultEnvironments("dev"),但这不允许提前(AOT)编译器检测默认环境。

Micronaut 横幅

从 Micronaut 2.3 起,应用程序启动时会显示横幅。它在默认情况下处于启用状态,并且还显示 Micronaut 版本。

$ ./gradlew run
__ __ _ _
| \/ (_) ___ _ __ ___ _ __ __ _ _ _| |_
| |\/| | |/ __| '__/ _ \| '_ \ / _` | | | | __|
| | | | | (__| | | (_) | | | | (_| | |_| | |_
|_| |_|_|\___|_| \___/|_| |_|\__,_|\__,_|\__|
Micronaut (3.9.4)

17:07:22.997 [main] INFO io.micronaut.runtime.Micronaut - Startup completed in 611ms. Server Running: http://localhost:8080

要使用你自己的 ASCII 艺术(目前仅支持纯 ASCII)自定义横幅,请创建 src/main/resources/micronaut-banner.txt 文件,然后它将用于替代默认的横幅。

要禁用它,请修改 Application 类:

public class Application {

public static void main(String[] args) {
Micronaut.build(args)
.banner(false) (1)
.start();
}
}
  1. 禁用横幅

4.2 具有 PropertySources 的外部化配置

在初始化 ApplicationContext 之前,可以将其他 PropertySource 实例添加到环境中。

初始化 Environment

ApplicationContext applicationContext = ApplicationContext.run(
PropertySource.of(
"test",
CollectionUtils.mapOf(
"micronaut.server.host", "foo",
"micronaut.server.port", 8080
)
),
"test", "android");
Environment environment = applicationContext.getEnvironment();

assertEquals(
"foo",
environment.getProperty("micronaut.server.host", String.class).orElse("localhost")
);

PropertySource.of 方法可用于从值映射创建 PropertySource

或者,可以通过创建 META-INF/services/io.micronaut.text.env.PropertySourceLoader 文件来注册 PropertySourceLoader,该文件包含对 PropertySourceLoader 类名的引用。

包含的 PropertySource 加载程序

默认情况下,Micronaut 包含从给定位置和优先级加载属性的 PropertySourceLoader 实现:

  1. 命令行参数
  2. 来自 SPRING_APPLICATION_JSON 的属性(用于 Spring 兼容性)
  3. MICRONAUT_APPLICATION_JSON 中的属性
  4. Java 系统属性
  5. 操作系统环境变量
  6. 从系统属性 “micronaut.config.files” 或环境变量 MICRONAUT_CONFIG_FILES 按顺序加载的配置文件。该值可以是以逗号分隔的路径列表,最后一个文件具有优先级。文件可以作为路径从文件系统中引用,也可以作为带有 classpath: 前缀的类路径引用。
  7. 来自 application-{environment}.{extension} 特定环境属性
  8. 来自 application.{extension} 特定应用属性
提示

.properties.json.yml 开箱即用。对于 Groovy 用户,.groovy 也是受支持的。

请注意,如果你希望完全控制应用程序从何处加载配置,则可以在启动应用程序时通过调用 ApplicationContextBuilder 接口的 enableDefaultPropertySources(false) 方法来禁用上面列出的默认 PropertySourceLoader 实现。

在这种情况下,将只使用通过 ApplicationContextBuilder 接口的 propertySources(..) 方法添加的显式 PropertySource 实例。

通过命令行提供配置

可以使用 Gradle 或我们的 Maven 插件在命令行提供配置。例如:

Gradle

$ ./gradlew run --args="-endpoints.health.enabled=true -config.property=test"

Maven

$ ./mvnw mn:run -Dmn.appArgs="-endpoints.health.enabled=true -config.property=test"

要使配置成为上下文的一部分,必须将主方法中的参数传递给上下文生成器。例如:

import io.micronaut.runtime.Micronaut;

public class Application {

public static void main(String[] args) {
Micronaut.run(Application.class, args); // passing args
}
}

机密和敏感配置

需要重点注意的是,不建议将密码和令牌等敏感配置存储在可能检查到源代码管理系统中的配置文件中。

相反,最好使用外部机密管理器系统(这里有很多选项,许多由云提供商提供)或在应用程序部署期间设置的环境变量,将敏感配置完全从应用程序代码中外部化。你还可以使用属性占位符(参阅以下部分),自定义要使用的环境变量的名称并提供默认值:

使用属性占位符定义安全配置

datasources:
default:
url: ${JDBC_URL:`jdbc:mysql://localhost:3306/db`}
username: ${JDBC_USER:root}
password: ${JDBC_PASSWORD:}
dialect: MYSQL
driverClassName: ${JDBC_DRIVER:com.mysql.cj.jdbc.Driver}

要安全地外部化配置,请考虑使用 Micronaut 支持的机密管理器系统,例如:

属性值占位符

如前一节所述,Micronaut 包含一个属性占位符语法,用于在配置值内和使用任何 Micronaot 注解引用配置属性。参阅 @Value配置注入部分。

提示

也可以通过 PropertyPlaceholderResolver 接口进行编程使用。

基本语法是将对属性的引用包装在 ${…​}, 例如在 application.yml 中:

定义属性占位符

myapp:
endpoint: http://${micronaut.server.host}:${micronaut.server.port}/foo

上述示例嵌入了对 microaut.server.hostmicroauT.server.port 属性的引用。

你可以通过在 : 字符后定义一个值来指定默认值。例如:

使用默认值

myapp:
endpoint: http://${micronaut.server.host:localhost}:${micronaut.server.port:8080}/foo

如果找不到值(而不是抛出异常),则上面的示例默认为 localhost 和端口 8080。请注意,如果默认值包含 : 字符,则必须使用反引号对其进行转义:

使用反引号

myapp:
endpoint: ${server.address:`http://localhost:8080`}/foo

上面的示例查找 server.address 属性,并默认为 http://localhost:8080 。由于此默认值有一个 : 字符,因此使用反引号对其进行转义。

属性值绑定

请注意,在代码或占位符值中放置引用时,这些属性引用应使用 kebab 风格(小写和连字符分隔)。例如,使用 micronat.server.default-charset,而不是使用 micronaut.server.defaultCharset

Micronaut 仍然允许在配置中指定后者,但将属性规范化为 kebab 风格,以优化内存消耗并降低解析属性时的复杂性。下表总结了如何从不同来源规范化属性:

表 1.属性值标准化

配置值结果属性属性源
myApp.myStuffmy-app.my-stuffProperties、YAML 等
my-app.myStuffmy-app.my-stuffProperties、YAML 等
myApp.my-stuffmy-app.my-stuffProperties、YAML 等
MYAPP_MYSTUFFmyapp.mystuff, myapp-mystuff环境变量
MY_APP_MY_STUFFmy.app.my.stuff, my.app.my-stuff, my.app-my.stuff, my.app-my-stuff, my-app.my.stuff, my-app.my-stuff, my-app-my.stuff, my-app-my-stuff环境变量

环境变量进行了特殊处理,以提供更大的灵活性。请注意,没有办法引用带有驼峰风格的环境变量。

警告

由于生成的属性数量是基于环境变量中 _ 字符数的指数,因此如果具有多个下划线的环境变量的数量很大,建议优化配置中包括哪些环境变量(如果有)。

要控制环境属性如何参与配置,请调用 Micronaut 构建器上的相应方法。

Application 类

import io.micronaut.runtime.Micronaut;

public class Application {

public static void main(String[] args) {
Micronaut.build(args)
.mainClass(Application.class)
.environmentPropertySource(false)
//or
.environmentVariableIncludes("THIS_ENV_ONLY")
//or
.environmentVariableExcludes("EXCLUDED_ENV")
.start();
}
}
注意

上面的配置对属性占位符没有任何影响。无论环境配置是否被禁用,或者即使明确排除了特定属性,仍然可以在占位符中引用环境变量。

使用随机属性

你可以使用以下属性来使用 random 值。这些可以在配置文件中作为变量使用,如下所示。

micronaut:
application:
name: myapplication
instance:
id: ${random.shortuuid}

表 2.随机值

属性
random.port可用的随机端口值
random.int随机 int
random.integer随机 int
random.long随机 long
random.float随机 float
random.shortuuid随机 UUID,限定仅 10 字符 (注意:由于不是完整 UUID,可能出现冲突)
random.uuid带连接符的随机 UUID
random.uuid2无连接符的随机 UUID

random.intrandom.integerrandom.longrandom.float 属性支持范围后缀,其语法如下:

  • (max) max 值不包含

  • [min,max] min 值包含,max 值不包含

instance:
id: ${random.int[5,10]}
count: ${random.int(5)}
注意

范围也可能从负值到正值不等

快速失败属性注入

对于注入所需属性的 bean,在请求 bean之前,不会发生注入和潜在故障。为了在启动时验证属性是否存在并可以注入,可以使用 @Context 对 bean 进行注解。上下文范围的 bean 在启动时被注入,如果缺少任何必需的属性或无法转换为必需的类型,则启动将失败。

4.3 配置注入

你可以使用 @Value 注解将配置值注入到 bean 中。

使用 @Value 注解

考虑以下示例:

@Value 示例

import io.micronaut.context.annotation.Value;

import jakarta.inject.Singleton;

@Singleton
public class EngineImpl implements Engine {

@Value("${my.engine.cylinders:6}") // (1)
protected int cylinders;

@Override
public int getCylinders() {
return cylinders;
}

@Override
public String start() {// (2)
return "Starting V" + getCylinders() + " Engine";
}

}
  1. @Value 注解接受一个可以嵌入占位符值的字符串(默认值可以通过在冒号 : 字符后指定一个值来提供)。还要尽量避免将成员可见性设置为 private,因为这需要 Micronaut Framework 使用反射。推荐使用 protected
  2. 然后可以在代码中使用注入的值。

注意,@Value 也可以用于注入静态值。例如,以下注入数字 10:

静态 @Value 示例

@Value("10")
int number;

当用于组合静态内容和占位符的注入值时,这甚至更有用。例如,要设置 URL:

@Value 占位符

@Value("http://${my.host}:${my.port}")
URL url;

在上面的示例中,URL 是由配置中必须存在的两个占位符属性构造的:my.hostmy.port

请记住,要在占位符表达式中指定默认值,请使用冒号 : 字符。但是,如果指定的默认值包括冒号,则必须使用反引号转义该值。例如:

@Value 占位符

@Value("${my.url:`http://foo.com`}")
URL url;

请注意,关于属性值占位符的解析,@Value 本身并没有什么特别之处。

由于 Micronaut 对注解元数据的广泛支持,你可以在任何注解上使用属性占位符表达式。例如,要使 @Controller 的路径可配置,你可以执行以下操作:

@Controller("${hello.controller.path:/hello}")
class HelloController {
...
}

在上述例子中,如果在配置中指定了 hello.controller.path,则控制器将映射到指定的路径,否则将映射到 /hello

你还可以使 @Client 的目标服务器可配置(尽管服务发现方法通常更好),例如:

@Client("${my.server.url:`http://localhost:8080`}")
interface HelloClient {
...
}

在上面的示例中,属性 my.server.url 可以用于配置客户端,否则客户端将返回到本地主机地址。

使用 @Property 注解

回想一下,@Value 注解接收一个 String 值,该值可以是静态内容和占位符表达式的混合。如果你试图执行以下操作,这可能会导致混乱:

不正确使用 @Value

@Value("my.url")
String url;

在上面的例子中,文本字符串值 my.url 被注入并设置为 url 字段,而不是应用程序配置中 my.url 属性的值。这是因为 @Value 只解析指定给它的值中的占位符。

若要注入特定的属性名称,你最好使用 @Property

使用 @Property

import io.micronaut.context.annotation.Property;

import jakarta.inject.Inject;
import jakarta.inject.Singleton;

@Singleton
public class Engine {

@Property(name = "my.engine.cylinders") // (1)
protected int cylinders; // (2)

private String manufacturer;

public int getCylinders() {
return cylinders;
}

public String getManufacturer() {
return manufacturer;
}

@Inject
public void setManufacturer(@Property(name = "my.engine.manufacturer") String manufacturer) { // (3)
this.manufacturer = manufacturer;
}

}
  1. my.engine.clinders 属性从配置中解析并注入到字段中。
  2. 需要注入的字段不应是私有的,因为必须使用昂贵的反射
  3. @Property 注解用于通过 setter 注入
注意

由于无法使用 @Property 定义默认值,因此如果该值不存在或无法转换为所需类型,则 bean 实例化将失败。

相反,上面注入了从应用程序配置中解析的 my.url 属性的值。如果在配置中找不到属性,则会引发异常。与其他类型的注入一样,注入点也可以用 @Nullable 进行注解,以使注入成为可选的。

你也可以使用此功能来解析子 map。例如,考虑以下配置:

application.yml 配置示例

datasources:
default:
name: 'mydb'
jpa:
default:
properties:
hibernate:
hbm2ddl:
auto: update
show_sql: true

要解析仅包含以 hibernate 开头的属性的展平 map,请使用 @Property,例如:

@Property 示例

@Property(name = "jpa.default.properties")
Map<String, String> jpaProperties;

注入的映射将包含键 hibernate.hbm2ddl.autohibernate.show_sql 及其值。

提示

@MapFormat 注解可用于自定义注入的映射,具体取决于你想要嵌套键还是展开键,并且它允许通过 StringConvention 枚举自定义键样式。

4.4 配置属性

你可以通过创建用 @ConfigurationProperties 注解的类来创建类型安全配置。

Micronaut 将生成一个无反射的 @ConfigurationProperties bean,并在编译时计算要评估的属性路径,从而大大提高加载 @ConfigurationProperties 的速度和效率。

例如:

@ConfigurationProperties 示例

import io.micronaut.context.annotation.ConfigurationProperties;

import javax.validation.constraints.Min;
import javax.validation.constraints.NotBlank;
import java.util.Optional;

@ConfigurationProperties("my.engine") // (1)
public class EngineConfig {

public String getManufacturer() {
return manufacturer;
}

public void setManufacturer(String manufacturer) {
this.manufacturer = manufacturer;
}

public int getCylinders() {
return cylinders;
}

public void setCylinders(int cylinders) {
this.cylinders = cylinders;
}

public CrankShaft getCrankShaft() {
return crankShaft;
}

public void setCrankShaft(CrankShaft crankShaft) {
this.crankShaft = crankShaft;
}

@NotBlank // (2)
private String manufacturer = "Ford"; // (3)

@Min(1L)
private int cylinders;

private CrankShaft crankShaft = new CrankShaft();

@ConfigurationProperties("crank-shaft")
public static class CrankShaft { // (4)

private Optional<Double> rodLength = Optional.empty(); // (5)

public Optional<Double> getRodLength() {
return rodLength;
}

public void setRodLength(Optional<Double> rodLength) {
this.rodLength = rodLength;
}
}
}
  1. @ConfigurationProperties 注解采用配置前缀
  2. 你可以使用 javax.validation 注解来验证配置
  3. 可以为特性指定默认值
  4. 静态内部类可以提供嵌套配置
  5. 可选配置值可以封装在 java.util.Optional

一旦你准备好了类型安全配置,就可以像任何其他 bean 一样将其注入到你的 bean 中:

@ConfigurationProperties 依赖注入

@Singleton
public class EngineImpl implements Engine {
private final EngineConfig config;

public EngineImpl(EngineConfig config) { // (1)
this.config = config;
}

@Override
public int getCylinders() {
return config.getCylinders();
}

@Override
public String start() {// (2)
return getConfig().getManufacturer() + " Engine Starting V" + getConfig().getCylinders() +
" [rodLength=" + getConfig().getCrankShaft().getRodLength().orElse(6d) + "]";
}

public final EngineConfig getConfig() {
return config;
}
}
  1. 注入 EngineConfig bean
  2. 使用配置属性

然后可以从 PropertySource 实例之一提供配置值。例如:

应用配置

Map<String, Object> map = new LinkedHashMap<>(1);
map.put("my.engine.cylinders", "8");
ApplicationContext applicationContext = ApplicationContext.run(map, "test");

Vehicle vehicle = applicationContext.getBean(Vehicle.class);
System.out.println(vehicle.start());

以上示例打印 "Ford Engine Starting V8 [rodLength=6.0]"

你可以直接引用 @Requires 注解中的配置属性,以使用以下语法有条件地加载 bean:@Requires(bean=Config.class, beanProperty="property", value="true")

注意,对于更复杂的配置,你可以通过继承来构造 @ConfigurationProperties bean。

例如,使用 @ConfigurationProperties('bar') 创建 EngineConfig 的子类将解析路径 my.engine.bar 下的所有属性。

包含/排除

对于配置属性类从父类继承属性的情况,可能需要从父类中排除属性。@ConfigurationProperties 注解的 includesexcludes 成员允许该功能。该列表适用于本地属性和继承的属性。

提供给包含/排除列表的名称必须是“属性”名称。例如,如果注入了一个 setter 方法,那么属性名称就是去大写的 setter 名称(setConnectionTimeoutconnectionTimeout)。


变更访问器风格

从 3.3 开始,Micronaut 支持为 getter 和 setter 定义不同的访问器前缀,而不是为 JavaBeans 定义的默认 getset。使用 @AccessorsStyle 注解对 POJO 或 @ConfigurationProperties 类进行注解。

当你以流畅的方式编写 getter 和 setter 时,这很有用。例如:

使用 @AccessorsStyle

import io.micronaut.context.annotation.ConfigurationProperties;
import io.micronaut.core.annotation.AccessorsStyle;

@AccessorsStyle(readPrefixes = "", writePrefixes = "") (1)
@ConfigurationProperties("my.engine")
public class EngineConfig {

private String manufacturer;
private int cylinders;

public EngineConfig(String manufacturer, int cylinders) {
this.manufacturer = manufacturer;
this.cylinders = cylinders;
}

public String manufacturer() { (2)
return manufacturer;
}

public void manufacturer(String manufacturer) { (2)
this.manufacturer = manufacturer;
}

public int cylinders() { (2)
return cylinders;
}

public void cylinders(int cylinders) { (2)
this.cylinders = cylinders;
}

}
  1. Micronaut 将为 getter 和 setter 使用一个空前缀。
  2. 使用空前缀定义 getter 和 setter。

现在,你可以注入 EngineConfig,并将其与 engineConfig.manufacturer()engineConfig.clinders() 一起使用,以从配置中检索值。


属性类型转换

Micronaut 在解析属性时使用 ConversionService bean 转换值。通过定义实现 TypeConverter 接口的 bean,可以为Micronaut不支持的类型注册其他转换器。

Micronaut 具有一些有用的内置转换功能,具体如下。

周期转换

可以通过在单位后面附加一个数字来指定工期。支持的单位为 smsm 等。下表总结了示例:

表 1. 周期转换

配置值结果值
10ms10 毫秒周期
10m10 分钟周期
10s10 秒周期
10d10 天周期
10h10 小时周期
10ns10 纳秒周期
PT15M使用 ISO-8601 格式的 15 分钟周期

例如,要配置默认的 HTTP 客户端读取超时:

使用周期值

micronaut:
http:
client:
read-timeout: 15s

列表/数组转换

列表和数组可以在 Java 属性文件中指定为逗号分隔的值,也可以在 YAML 中使用本地 YAML 列表。泛型类型用于转换值。例如,在 YAML 中:

在 YAML 中特定的列表或数组

my:
app:
integers:
- 1
- 2
urls:
- http://foo.com
- http://bar.com

或 Java 属性文件格式:

在 Java 属性中指定以逗号分隔的列表或数组

my.app.integers=1,2
my.app.urls=http://foo.com,http://bar.com

或者,你可以使用索引:

使用索引指定 Java 属性中的列表或数组

my.app.integers[0]=1
my.app.integers[1]=2

对于上述示例配置,你可以使用泛型提供的目标类型定义要绑定的属性:

List<Integer> integers;
List<URL> urls;

可读字节

你可以用 @ReadableBytes 注解任何 setter 参数,以允许使用指定字节、千字节等的简写语法来设置值。例如,以下内容取自 HttpClientConfiguration

使用 @ReadableBytes

public void setMaxContentLength(@ReadableBytes int maxContentLength) {
this.maxContentLength = maxContentLength;
}

有了以上内容,你可以使用以下值设置 micronaut.http.client.max-content-length

表 2.@ReadableBytes 转换

配置值结果值
10mb10 兆字节
10kb10 千字节
10gb10 十亿字节
1024原始字节长度

格式化日期

在 setter 上可以使用 @Format 注解来指定绑定 java.time 日期对象时要使用的日期格式。

对日期使用 @Format

public void setMyDate(@Format("yyyy-MM-dd") LocalDate date) {
this.myDate = date;
}

配置构造器

许多框架和工具已经使用构造器风格的类来构建配置。

你可以使用 @ConfigurationBuilder 注解来用配置值填充生成器样式类。ConfigurationBuilder 可以应用于用 @ConfigurationProperties 注解的类中的字段或方法。

由于在 Java 世界中没有一致的方法来定义构造器,因此可以在注解中指定一个或多个方法前缀,以支持像 withXxxsetXxx 这样的构造器方法。如果构造器方法没有前缀,请为参数指定一个空字符串。

还可以指定配置前缀来告诉 Micronaut 在哪里查找配置值。默认情况下,构建器方法使用类级别 @ConfigurationProperties 注解中指定的配置前缀。

例如:

@ConfigurationBuilder 示例

import io.micronaut.context.annotation.ConfigurationBuilder;
import io.micronaut.context.annotation.ConfigurationProperties;

@ConfigurationProperties("my.engine") // (1)
class EngineConfig {

@ConfigurationBuilder(prefixes = "with") // (2)
EngineImpl.Builder builder = EngineImpl.builder();

@ConfigurationBuilder(prefixes = "with", configurationPrefix = "crank-shaft") // (3)
CrankShaft.Builder crankShaft = CrankShaft.builder();

private SparkPlug.Builder sparkPlug = SparkPlug.builder();

SparkPlug.Builder getSparkPlug() {
return sparkPlug;
}

@ConfigurationBuilder(prefixes = "with", configurationPrefix = "spark-plug") // (4)
void setSparkPlug(SparkPlug.Builder sparkPlug) {
this.sparkPlug = sparkPlug;
}
}
  1. @ConfigurationProperties 注解采用配置前缀
  2. 可以在没有类配置前缀的情况下配置第一构造器;它继承了上面的内容。
  3. 第二个构造器可以用类配置前缀 + configurationPrefix 值进行配置。
  4. 第三个构造器演示了注解既可以应用于方法,也可以应用于属性。
注意

默认情况下,只支持单参数生成器方法。对于没有参数的方法,请将注解的 allowZeroArgs 参数设置为 true

与前面的例子一样,我们可以构造一个 EngineImpl。由于我们使用的是构造器,所以我们可以使用工厂类从构造器中构建引擎。

工厂 Bean

import io.micronaut.context.annotation.Factory;

import jakarta.inject.Singleton;

@Factory
class EngineFactory {

@Singleton
EngineImpl buildEngine(EngineConfig engineConfig) {
return engineConfig.builder.build(engineConfig.crankShaft, engineConfig.getSparkPlug());
}
}

然后,可以在需要发动机的任何地方将返回的发动机进行注入。

可以从 PropertySource 实例之一提供配置值。例如:

应用配置

        Map<String, Object> properties = new HashMap<>();
properties.put("my.engine.cylinders" ,"4");
properties.put("my.engine.manufacturer" , "Subaru");
properties.put("my.engine.crank-shaft.rod-length", 4);
properties.put("my.engine.spark-plug.name" , "6619 LFR6AIX");
properties.put("my.engine.spark-plug.type" , "Iridium");
properties.put("my.engine.spark-plug.companyName", "NGK");
ApplicationContext applicationContext = ApplicationContext.run(properties, "test");

Vehicle vehicle = applicationContext.getBean(Vehicle.class);
System.out.println(vehicle.start());

以上示例打印:"Subaru Engine Starting V4 [rodLength=4.0, sparkPlug=Iridium(NGK 6619 LFR6AIX)]"


MapFormat

对于某些用例,可能需要接受可提供给 bean 的任意配置属性的 map,特别是如果 bean 代表第三方 API,其中并非所有可能的配置属性都已知。例如,数据源可以接受特定于特定数据库驱动程序的配置属性 map,允许用户在 map 中指定任何所需的选项,而无需显式编码每个属性。

为此,使用 MapFormat 注解可以将映射绑定到单个配置属性,并指定是接受键到值的平面 map,还是接受嵌套 map(其中值可以是其他 map)。

@MapFormat 格式

import io.micronaut.context.annotation.ConfigurationProperties;
import io.micronaut.core.convert.format.MapFormat;

import javax.validation.constraints.Min;
import java.util.Map;

@ConfigurationProperties("my.engine")
public class EngineConfig {

@Min(1L)
private int cylinders;

@MapFormat(transformation = MapFormat.MapTransformation.FLAT) //(1)
private Map<Integer, String> sensors;

public int getCylinders() {
return cylinders;
}

public void setCylinders(int cylinders) {
this.cylinders = cylinders;
}

public Map<Integer, String> getSensors() {
return sensors;
}

public void setSensors(Map<Integer, String> sensors) {
this.sensors = sensors;
}
}
  1. 注意注解中的 transformation 参数;可能的值为 MapTransformation.FLAT(用于平面 map)和 MapTransformation.NESTED(用于嵌套 map)

EngineImpl

@Singleton
public class EngineImpl implements Engine {

@Inject
EngineConfig config;

@Override
public Map getSensors() {
return config.getSensors();
}

@Override
public String start() {
return "Engine Starting V" + getConfig().getCylinders() +
" [sensors=" + getSensors().size() + "]";
}

public EngineConfig getConfig() {
return config;
}

public void setConfig(EngineConfig config) {
this.config = config;
}
}

现在可以向 my.engine.sensors 配置属性提供属性的 map。

使用 Map 配置

Map<String, Object> map = new LinkedHashMap<>(2);
map.put("my.engine.cylinders", "8");

Map<Integer, String> map1 = new LinkedHashMap<>(2);
map1.put(0, "thermostat");
map1.put(1, "fuel pressure");

map.put("my.engine.sensors", map1);

ApplicationContext applicationContext = ApplicationContext.run(map, "test");

Vehicle vehicle = applicationContext.getBean(Vehicle.class);
System.out.println(vehicle.start());

以上例子打印:"Engine Starting V8 [sensors=2]"

4.5 自定义类型转换器

Micronaut 包括一个可扩展的类型转换机制。要添加额外的类型转换器,你需要注册类型为 TypeConverter 的 bean。

以下示例显示了如何使用内置转换器之一(映射到对象)或创建自己的转换器。

请考虑以下 ConfigurationProperties

private static ApplicationContext ctx;

@BeforeClass
public static void setupCtx() {
ctx = ApplicationContext.run(
new LinkedHashMap<String, Object>() {{
put("myapp.updatedAt", // (1)
new LinkedHashMap<String, Integer>() {{
put("day", 28);
put("month", 10);
put("year", 1982);
}}
);
}}
);
}

@AfterClass
public static void teardownCtx() {
if(ctx != null) {
ctx.stop();
}
}
  1. 注意我们如何在上面的 MyConfigurationProperties 类中匹配 myapp 前缀和 updatedAt 属性名称

默认情况下,这将不起作用,因为没有从 MapLocalDate 的内置转换。要解决此问题,请定义一个自定义 TypeConverter

import io.micronaut.core.convert.ConversionContext;
import io.micronaut.core.convert.ConversionService;
import io.micronaut.core.convert.TypeConverter;

import jakarta.inject.Singleton;
import java.time.DateTimeException;
import java.time.LocalDate;
import java.util.Map;
import java.util.Optional;

@Singleton
public class MapToLocalDateConverter implements TypeConverter<Map, LocalDate> { // (1)
@Override
public Optional<LocalDate> convert(Map propertyMap, Class<LocalDate> targetType, ConversionContext context) {
Optional<Integer> day = ConversionService.SHARED.convert(propertyMap.get("day"), Integer.class);
Optional<Integer> month = ConversionService.SHARED.convert(propertyMap.get("month"), Integer.class);
Optional<Integer> year = ConversionService.SHARED.convert(propertyMap.get("year"), Integer.class);
if (day.isPresent() && month.isPresent() && year.isPresent()) {
try {
return Optional.of(LocalDate.of(year.get(), month.get(), day.get())); // (2)
} catch (DateTimeException e) {
context.reject(propertyMap, e); // (3)
return Optional.empty();
}
}

return Optional.empty();
}
}
  1. 该类实现了 TypeConverter,它有两个泛型参数,一个是从中转换的类型,另一个是转换为的类型
  2. 实现委托给默认的共享转换服务,以转换用于创建 LocalDate 的 Map 中的值
  3. 如果绑定过程中发生异常,请调用 reject(..),它会将附加信息传播到容器

4.6 使用 @EachProperty 驱动配置

@ConfigurationProperties 注解非常适合单个配置类,但有时你需要多个实例,每个实例都有自己独特的配置。这时就是 EachProperty 出场了。

@EachProperty 注解为给定属性中的每个子属性创建一个 ConfigurationProperties bean。例如,考虑以下类别:

使用 @EachProperty

import java.net.URI;
import java.net.URISyntaxException;

import io.micronaut.context.annotation.Parameter;
import io.micronaut.context.annotation.EachProperty;

@EachProperty("test.datasource") // (1)
public class DataSourceConfiguration {

private final String name;
private URI url = new URI("localhost");

public DataSourceConfiguration(@Parameter String name) // (2)
throws URISyntaxException {
this.name = name;
}

public String getName() {
return name;
}

public URI getUrl() { // (3)
return url;
}

public void setUrl(URI url) {
this.url = url;
}
}
  1. @EachProperty 注解定义了要处理的属性名称。
  2. @Parameter 注解可用于注入子属性的名称,该子属性定义 bean 的名称(也是 bean 限定符)
  3. bean 的每个属性都绑定到配置。

上面的 DataSourceConfiguration 定义了一个 url 属性来配置一个或多个数据源。URL 本身可以使用对 Micronaut 求值的任何 PropertySource 实例进行配置

为 @EachProperty 提供配置

ApplicationContext applicationContext = ApplicationContext.run(PropertySource.of(
"test",
CollectionUtils.mapOf(
"test.datasource.one.url", "jdbc:mysql://localhost/one",
"test.datasource.two.url", "jdbc:mysql://localhost/two")
));

在上面的示例中,在@EachProperty注解中前面定义的test.datasource前缀下定义了两个数据源(称为一个和两个)。这些配置条目中的每一个都会触发创建一个新的DataSourceConfiguration bean,从而使以下测试成功:

评估 @EachProperty 构建的 Bean

Collection<DataSourceConfiguration> beansOfType = applicationContext.getBeansOfType(DataSourceConfiguration.class);
assertEquals(2, beansOfType.size()); // (1)

DataSourceConfiguration firstConfig = applicationContext.getBean(
DataSourceConfiguration.class,
Qualifiers.byName("one") // (2)
);

assertEquals(
new URI("jdbc:mysql://localhost/one"),
firstConfig.getUrl()
);
  1. 可以使用 getBeansOfType 检索 DataSourceConfiguration 类型的所有 bean
  2. 可以使用 byName 限定符检索单个 bean

基于 List 的绑定

@EachProperty 的默认行为是从映射样式的配置绑定,其中键是 bean 的命名限定符,值是要绑定的数据。对于映射样式配置没有意义的情况,可以通知 Micronaut 该类是从列表绑定的。只需将注解上的 list 成员设置为 true 即可。

@EachProperty List 示例

import io.micronaut.context.annotation.EachProperty;
import io.micronaut.context.annotation.Parameter;
import io.micronaut.core.order.Ordered;

import java.time.Duration;

@EachProperty(value = "ratelimits", list = true) // (1)
public class RateLimitsConfiguration implements Ordered { // (2)

private final Integer index;
private Duration period;
private Integer limit;

RateLimitsConfiguration(@Parameter Integer index) { // (3)
this.index = index;
}

@Override
public int getOrder() {
return index;
}

public Duration getPeriod() {
return period;
}

public void setPeriod(Duration period) {
this.period = period;
}

public Integer getLimit() {
return limit;
}

public void setLimit(Integer limit) {
this.limit = limit;
}
}
  1. 注解的 list 成员设置为 true
  2. 如果检索bean时顺序很重要,则实现 Ordered
  3. 索引被注入构造函数

4.7 使用 @EachBean 驱动配置

@EachProperty 注解是驱动动态配置的好方法,但通常你希望将该配置注入另一个依赖于它的 bean。注入带有硬编码限定符的单个实例不是一个好的解决方案,因此 @EachProperties 通常与 @EachBean 组合使用:

使用 @EachBean

@Factory // (1)
public class DataSourceFactory {

@EachBean(DataSourceConfiguration.class) // (2)
DataSource dataSource(DataSourceConfiguration configuration) { // (3)
URI url = configuration.getUrl();
return new DataSource(url);
}
  1. 上面的例子定义了一个 bean Factory,该工厂创建 javax.sql.DataSource 的实例。
  2. @EachBean 注解表示将为上一节中定义的每个 DataSourceConfiguration 创建一个新的 DataSource bean。
  3. DataSourceConfiguration 实例作为方法参数注入,用于驱动每个 javax.sql.DataSource 的配置

请注意,@EachBean 要求父 bean 具有 @Named 限定符,因为该限定符由 @EachBean 创建的每个 bean 继承。

换句话说,要检索 test.DataSource.one 创建的 DataSource,你可以执行以下操作:

使用限定符

Collection<DataSource> beansOfType = applicationContext.getBeansOfType(DataSource.class);
assertEquals(2, beansOfType.size()); // (1)

DataSource firstConfig = applicationContext.getBean(
DataSource.class,
Qualifiers.byName("one") // (2)
);
  1. 我们在这里证明了确实有两个数据来源。我们如何才能得到一个特别的?
  2. 通过使用 Qualifier.byName("one"),我们可以选择要引用的两个 bean 中的哪一个

4.8 不可变配置

自 1.3 以来,Micronaut 支持不可变配置的定义。

有两种方法可以定义不可变的配置。首选的方法是定义一个用 @ConfigurationProperties 注解的接口。例如:

@ConfigurationProperties 示例

import io.micronaut.core.bind.annotation.Bindable;
import io.micronaut.core.annotation.Nullable;
import io.micronaut.context.annotation.ConfigurationInject;
import io.micronaut.context.annotation.ConfigurationProperties;

import javax.validation.constraints.Min;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import java.util.Optional;

@ConfigurationProperties("my.engine") // (1)
public class EngineConfig {

private final String manufacturer;
private final int cylinders;
private final CrankShaft crankShaft;

@ConfigurationInject // (2)
public EngineConfig(
@Bindable(defaultValue = "Ford") @NotBlank String manufacturer, // (3)
@Min(1L) int cylinders, // (4)
@NotNull CrankShaft crankShaft) {
this.manufacturer = manufacturer;
this.cylinders = cylinders;
this.crankShaft = crankShaft;
}

public String getManufacturer() {
return manufacturer;
}

public int getCylinders() {
return cylinders;
}

public CrankShaft getCrankShaft() {
return crankShaft;
}

@ConfigurationProperties("crank-shaft")
public static class CrankShaft { // (5)
private final Double rodLength; // (6)

@ConfigurationInject
public CrankShaft(@Nullable Double rodLength) {
this.rodLength = rodLength;
}

public Optional<Double> getRodLength() {
return Optional.ofNullable(rodLength);
}
}
}
  1. @ConfigurationProperties 注解采用配置前缀
  2. @ConfigurationInject 注解是在构造函数上定义的
  3. 你可以使用 @Bindable 设置默认值
  4. 验证注解也可以使用
  5. 你可以嵌套不可变的配置
  6. 可选配置可以用 @Nullable 表示

@ConfigurationInject 注解为 Micronaut 提供了一个提示,提示其优先考虑配置中的绑定值,而不是注入 bean。

注意

使用这种方法,为了使配置可刷新,还可以向类中添加 @Refreshable 注解。这允许在运行时配置刷新事件的情况下重新创建 bean。

这个规则有几个例外。如果满足以下任何条件,Micronaut 将不会对参数执行配置绑定:

  • 参数用 @Value(显式绑定)进行注解
  • 参数使用 @Property(显式绑定)进行注解
  • 参数用 @Parameter(参数化 bean 处理)进行注解
  • 参数用 @Inject(泛型 bean 注入)进行注解
  • 参数的类型用 bean 作用域(例如 @Singleton)进行注解

一旦你准备好了类型安全配置,就可以像任何其他 bean 一样将其注入到你的 bean 中:

@ConfigurationProperties 依赖注入

@Singleton
public class Engine {
private final EngineConfig config;

public Engine(EngineConfig config) {// (1)
this.config = config;
}

public int getCylinders() {
return config.getCylinders();
}

public String start() {// (2)
return getConfig().getManufacturer() + " Engine Starting V" + getConfig().getCylinders() +
" [rodLength=" + getConfig().getCrankShaft().getRodLength().orElse(6.0d) + "]";
}

public final EngineConfig getConfig() {
return config;
}
}
  1. 注入 EngineConfig bean
  2. 使用配置属性

然后可以在运行应用程序时提供配置值。例如:

应用配置

ApplicationContext applicationContext = ApplicationContext.run(CollectionUtils.mapOf(
"my.engine.cylinders", "8",
"my.engine.crank-shaft.rod-length", "7.0"
));

Vehicle vehicle = applicationContext.getBean(Vehicle.class);
System.out.println(vehicle.start());

以上示例打印:"Ford Engine Starting V8 [rodLength=7B.0]"

自定义访问器

变更访问器风格中所述,在创建不可变配置属性时,也可以自定义访问器:

import io.micronaut.context.annotation.ConfigurationProperties;
import io.micronaut.core.annotation.AccessorsStyle;
import io.micronaut.core.bind.annotation.Bindable;

import javax.validation.constraints.Min;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import java.util.Optional;

@ConfigurationProperties("my.engine") (1)
@AccessorsStyle(readPrefixes = "read") (2)
public interface EngineConfigAccessors {

@Bindable(defaultValue = "Ford")
@NotBlank
String readManufacturer(); (3)

@Min(1L)
int readCylinders(); (3)

@NotNull
CrankShaft readCrankShaft(); (3)

@ConfigurationProperties("crank-shaft")
@AccessorsStyle(readPrefixes = "read") (4)
interface CrankShaft {
Optional<Double> readRodLength(); (5)
}
}
  1. @ConfigurationProperties 注解采用配置前缀,并在接口上声明
  2. @AccessorsStyle 注解将 readPrefix 定义为 read
  3. getter 都以 read 为前缀。
  4. 嵌套的不可变配置也可以用 @ConfigurationProperties 进行注解。
  5. getter 的前缀是 read

4.9 引导配置

大多数应用程序配置存储在 application.yml 中;特定于环境的文件,如 application-{environment}.{extension};环境和系统属性等。这些配置应用程序上下文。但在应用程序启动期间,在创建应用程序上下文之前,可以创建一个“引导”上下文来存储检索主上下文的附加配置所需的配置。通常,该附加配置位于某个远程源中。

根据以下条件启用引导上下文。按以下顺序检查条件:

  • 如果设置了 BOOTSTRAP_CONTEXT_PROPERTY 系统属性,则该值将确定是否启用引导程序上下文。
  • 如果设置了应用程序上下文生成器选项 bootstrapEnvironment,则该值确定是否启用了引导上下文。
  • 如果存在 BootstrapPropertySourceLocator bean,则会启用引导上下文。通常情况下,这来自于 micronaut-discovery-client 依赖。

解析应用程序上下文配置属性之前必须存在的配置属性(例如,在使用分布式配置时)存储在引导配置文件中。一旦确定启用了引导上下文(如上所述),就使用与常规应用程序配置相同的规则来读取引导配置文件。有关详细信息,请参阅属性源文档。唯一的区别是前缀(bootstrap 替代 application)。

文件名前缀 bootstrap 可使用系统属性 micronaut.bootstrap.name 进行配置。

注意

引导上下文配置会自动传递到主上下文,因此不需要在主上下文中复制配置属性。此外,引导上下文配置的优先级高于主上下文,这意味着如果配置属性出现在两个上下文中,则该值将首先从引导上下文中获取。

这意味着,如果两个地方都需要一个配置属性,那么它应该进入引导上下文配置。

有关与常见分布式配置解决方案的集成列表,参阅文档的分布式配置部分。

引导上下文 Bean

为了在引导上下文中解析 bean,必须使用 @BootstrapContextCompatible 对其进行注解。如果任何给定的 bean 都没有注解,那么它将无法在引导上下文中解析。通常,任何参与检索分布式配置过程的 bean 都需要进行注解。

4.10 JMX 支持

Micronaut为 JMX 提供基本支持。

更多信息,参阅 micronaut-jmx 项目的文档

英文链接