7

我有一个属性文件放置在 Java 中的 Web 项目的根目录中。我正在使用 Struts 2。我的代码无法读取属性文件。我应该在哪里保存我的属性文件?

我已经检查了默认路径,它是我的 Eclipse 的安装位置。但我希望该系统应该从项目文件夹本身读取文件。

4

4 回答 4

5

属性文件通常会:

  1. 在类路径上,例如,作为资源打开,或
  2. 在客户无法访问的位置,例如,在/WEB-INF

哪个更合适取决于您的需求。基于类路径的文件允许捆绑默认属性文件而无需配置。例如,Log4J 将log4j.properties在类路径的根目录中查找其默认配置文件。

但是,这有时会导致问题,具体取决于类加载顺序:有时系统会拾取“杂散”配置文件。自己配置它可能仍然是可取的;我仍然倾向于类路径,但配置文件也常见于WEB-INF. 任何一种方法都有效,并且两种样式都可以使用 JNDI、init 参数、环境变量或系统变量(例如-D)来配置。

于 2013-01-29T14:39:46.810 回答
5

通常您应该将属性文件放到文件src夹中,以便您的应用程序能够在您运行应用程序时读取属性文件,属性文件会从src文件夹复制到classes文件夹。据您所知,该classes文件夹应该是项目输出文件夹,因此它将用作classpath文件夹,并且应用程序能够加载属性文件(如果它位于classpath.

从类路径获取属性的示例:

Properties prop = new Properties();

try {
  //load properties from the class path
  prop.load(this.getClass().getClassLoader().getResourceAsStream("myproperties.properties"));

  //get the property 
  System.out.println(prop.getProperty("mykey"));

} catch (IOException ex) {
  ex.printStackTrace();
  throw ex;
}

但是,如果您知道文件系统上文件的路径,则可以加载属性,在这种情况下使用

prop.load(new FileInputStream("/path/to/myproperties.properties"));

如果你在谈论struts.properties

该框架使用了许多属性,这些属性可以根据您的需要进行更改。要更改任何这些属性,请在 struts.properties 文件中指定属性键和值。属性文件可以位于类路径上的任何位置,但通常位于 /WEB-INF/classes 下。

如果您正在寻找消息资源属性,则可以在提供的struts.propertiesstruts.xml更高版本中进行配置。

<constant name="struts.custom.i18n.resources" value="path/to/resources/MessageResources"/>

该值是文件路径src/path/to/resources/MessageResources.properties

如果您正在寻找配置应用程序的正确方法,请考虑选择使用EasyConf

于 2013-01-29T12:09:53.653 回答
4

将 myPropertyFile.properties 文件保存在 src 文件夹中(构建项目后,您将在 WEB-INF/classes 中找到它)并使用以下代码访问它们:

  Properties prop = new Properties();
  ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
  prop.load(classLoader.getResourceAsStream("/myPropertyFile.properties"));
于 2013-01-30T12:26:38.623 回答
-1

理想情况下,您可以将属性文件保存在:/src/com/cft/web/bundle/。例如,/src/com/cft/web/bundle/LabelResources.properties 或 /src/com/cft/web/bundle/Applicationresources.properties。

实际上,您可以根据自己的喜好提供任何路径。

只要记住在 web.xml/struts-config.xml 中添加正确的完整路径

例如=g。1. 在 web.xml 中:

		<description>Application Resources</description>
		<env-entry-name>ApplicationResources</env-entry-name>
		<env-entry-value>com.cft.web.bundle.ApplicationResources</env-entry-value>
		<env-entry-type>java.lang.String</env-entry-type>

  1. 在 Struts-config.xml 中

<message-resources parameter="com.cft.web.bundle.LabelResources" key="yourPropertiesFileName"/>

于 2017-05-23T12:06:39.590 回答