时间:2024-11-04 00:02:20
java读取properties
Java读取properties文件有以下几种方式:
1. 通过ResourceBundle.getBundle()静态方法来获取:这种方式来获取properties属性文件不需要加.properties后缀名,只需要文件名即可。缺点是只能加载类classes下面的资源文件,且只能读取.properties文件。
2. 通过PropertyResourceBundle包装文件输入流:可以读取任意路径下的配置文件。需要通过FileInputStream来创建。
3. 通过Properties类的load()方法读取输入流:也可以读取任意路径下的配置文件。需要通过FileInputStream来创建。
4. 使用Spring提供的PropertiesLoaderUtils:允许直接通过基于类路径的文件地址加载属性资源。最大的好处就是实时加载配置文件,修改后立即生效,不必重启。
5. 使用@value注解的方式获取properties文件中的配置值:需要在applicationContext.xml文件中配置properties文件,然后使用@value注解来获取文件中的配置值。
《java获取properties》不代表本网站观点,如有侵权请联系我们删除
精彩推荐