资源绑定器

Posted g0rez

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了资源绑定器相关的知识,希望对你有一定的参考价值。

 1 package com.bjpowernode.java.reflect;
 2 
 3 import java.util.ResourceBundle;
 4 
 5 /*
 6 java.util包下提供了一个资源绑定器,便于获取属性配置文件中的内容。
 7 使用以下这种方式的时候,属性配置文件xxx.properties必须放到类路径下。
 8  */
 9 public class ResourceBundleTest {
10     public static void main(String[] args) {
11 
12         // 资源绑定器,只能绑定xxx.properties文件。并且这个文件必须在类路径下。文件扩展名也必须是properties
13         // 并且在写路径的时候,路径后面的扩展名不能写。
14         //ResourceBundle bundle = ResourceBundle.getBundle("classinfo2");
15 
16         ResourceBundle bundle = ResourceBundle.getBundle("com/bjpowernode/java/bean/db");
17 
18         String className = bundle.getString("className");
19         System.out.println(className);
20 
21     }
22 }

以上是关于资源绑定器的主要内容,如果未能解决你的问题,请参考以下文章

P23 自定义Model绑定器

属性的自定义配置绑定器

.NET Core 自定义模型绑定器调用默认模型绑定器

Spring Cloud Stream绑定器架构解析与开发

用于 Spring Cloud 的 Kafka 绑定器不使用事务回滚

Web API 验证不使用自定义模型绑定器触发