解决Properties属性⽂件中的值有等号和换⾏的⼩问题⽬录
Properties属性⽂件中的值有等号和换⾏
Properties属性⽂件可以这样写
处理properties⽂件中key包含空格和等号的情况
处理⽅案
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
linux手动配置网络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}"/>js正则对象的方法
<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了。
小森林冬春篇在线观看处理⽅案
setlayoutparamsSpike.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("==================================================");
properties是什么文件readXml();
}
private static void readProperties() throws IOException {
Properties props = new Properties();
InputStream inStream = ResourceAsStream("Mock.properties");
props.load(inStream);
Enumeration enums = props.propertyNames();
while (enums.hasMoreElements()) {
String key = (String) Element();
System.out.println("Property--->>>>[" + key + "] " + "Value--->>>>" + Property(key)); }
}
private static void readXml() throws IOException {
Properties props = new Properties();
InputStream inStream = ResourceAsStream("l");phpstudy添加多个php版本
props.loadFromXML(inStream);
Enumeration enums = props.propertyNames();
while (enums.hasMoreElements()) {
String key = (String) Element();
System.out.println("Property--->>>>[" + key + "] " + "Value--->>>>" + Property(key)); }
}
}
以上为个⼈经验,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论