解决Properties属性文件中的值有等号和换行的小问题
作者:之健 时间:2023-09-07 19:22:58
Properties属性文件中的值有等号和换行
Spring配置Shiro的过滤器时,有个filterChainDefinitions属性,值中有等号有换行,尝试写到Properties属性文件中遇到问题
<!-- 配置shiro过滤器 -->
<bean id="shiroFilter" class="org.apache.shiro.spring.web.ShiroFilterFactoryBean">
<!-- 表示现在要配置的是一个安全管理器 -->
<property name="securityManager" ref="securityManager"/>
<!-- 出现错误之后的跳转路径的配置 -->
<property name="loginUrl" value="/login.html"/>
<!-- 认证失败之后的跳转路径页面 -->
<property name="unauthorizedUrl" value="/login.html"/>
<!-- 登录成功之后的跳转访问路径 -->
<property name="successUrl" value="/pages/welcome.jsp"/>
<property name="filterChainDefinitions">
<value>
/admin=authc
/logout=logout
/xxxxxx=user
</value>
</property>
</bean>
Properties属性文件可以这样写
shiro.loginUrl=/login.html
shiro.unauthorizedUrl=/login.html
shiro.successUrl=/pages/welcome.jsp
shiro.filterChainDefinitions=/admin=authc \n\
/logout=logout \n\
/info=authc
后面的等号不需要转义,\n表示值中的换行,再加个转义符\表示值还没结束,这样就没问题了
<bean id="shiroFilter" class="org.apache.shiro.spring.web.ShiroFilterFactoryBean">
<property name="securityManager" ref="securityManager"/>
<property name="loginUrl" value="${shiro.loginUrl}"/>
<property name="unauthorizedUrl" value="${shiro.unauthorizedUrl}"/>
<property name="successUrl" value="${shiro.successUrl}"/>
<property name="filterChainDefinitions">
<value>${shiro.filterChainDefinitions}</value>
</property>
</bean>
处理properties文件中key包含空格和等号的情况
在properties文件中都是以key=value的方式存储的,在java代码中用java.util.Properties的load方法,存储在一个map中,当key中有空格和等号的时候,要用\(斜杠)进行转义,而用xml的话,就没有转义这么麻烦了,所以推荐使用xml了。
处理方案
Spike.java
import java.io.IOException;
import java.io.InputStream;
import java.util.Enumeration;
import java.util.Properties;
public class Spike {
public static void main(String[] args) throws Exception {
readProperties();
System.out.println("==================================================");
readXml();
}
private static void readProperties() throws IOException {
Properties props = new Properties();
InputStream inStream = Spike.class.getResourceAsStream("Mock.properties");
props.load(inStream);
Enumeration enums = props.propertyNames();
while (enums.hasMoreElements()) {
String key = (String) enums.nextElement();
System.out.println("Property--->>>>[" + key + "] " + "Value--->>>>" + props.getProperty(key));
}
}
private static void readXml() throws IOException {
Properties props = new Properties();
InputStream inStream = Spike.class.getResourceAsStream("Mock.xml");
props.loadFromXML(inStream);
Enumeration enums = props.propertyNames();
while (enums.hasMoreElements()) {
String key = (String) enums.nextElement();
System.out.println("Property--->>>>[" + key + "] " + "Value--->>>>" + props.getProperty(key));
}
}
}
来源:https://www.cnblogs.com/zhijian233/p/9881437.html
标签:Properties,文件值,等号,换行
0
投稿
猜你喜欢
Java 多线程并发编程提高数据处理效率的详细过程
2021-06-29 04:19:39
C#关联自定义文件类型到应用程序并实现自动导入功能
2023-06-22 20:11:11
C++求四个正整数最大公约数的方法
2023-02-04 12:09:19
详解Java8如何使用Lambda表达式进行比较
2023-12-09 19:27:16
关于feign.codec.DecodeException异常的解决方案
2022-01-28 15:50:19
Json传输出现中文乱码问题的解决办法
2022-06-23 06:38:04
Android之ImageSwitcher的实例详解
2022-06-08 06:03:14
Spring Boot 集成Shiro的多realm配置过程
2023-09-17 10:07:26
Androd自定义对话框Dialog视图及参数传递的实现方法
2023-04-26 05:19:08
Spring Boot配置接口WebMvcConfigurer的实现
2023-11-27 23:28:50
java开发ShardingSphere的路由引擎类型示例详解
2023-11-29 01:18:56
spring-boot使用AOP统一处理日志
2023-06-09 05:12:35
深入Android HandlerThread 使用及其源码完全解析
2023-11-30 19:16:56
TableLayout(表格布局)基础知识点详解
2023-05-30 01:12:42
Kafka常用命令之kafka-console-consumer.sh解读
2022-06-11 00:20:32
WinForm子窗体访问父窗体控件的实现方法
2021-10-12 17:32:21
java 多线程的几种实现方法总结
2023-10-14 17:43:18
Android自定义View圆形进度条控件(三)
2021-11-13 10:17:51
浅析Java中comparator接口与Comparable接口的区别
2023-11-01 20:31:14
springboot使用Mybatis-plus分页插件的案例详解
2023-10-27 13:47:43