我是靠谱客的博主 温婉太阳,最近开发中收集的这篇文章主要介绍解决Properties属性文件中的值有等号和换行的小问题,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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));
  }
 }
}

以上为个人经验,希望能给大家一个参考,也希望大家多多支持靠谱客。

最后

以上就是温婉太阳为你收集整理的解决Properties属性文件中的值有等号和换行的小问题的全部内容,希望文章能够帮你解决解决Properties属性文件中的值有等号和换行的小问题所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(368)

评论列表共有 0 条评论

立即
投稿
返回
顶部