我正在创建一些 REST API。为此,我有一些应用程序级别的通用名称值对。为了配置这些名称值对,我刚刚在 WebContent 中创建了一个 xml 文件,并在类的静态块中从 xml 访问值并使用静态变量进行初始化。因此,在 xml 中为每个名称提供的所有值都将分配给类的静态块中的相应静态变量。
除了从 REST API 客户端之外,我还能够访问这些变量并获取每个类中的值。问题来了,当我创建一个 REST API 客户端来使用在同一个项目中创建的 API 时,FileNotFoundException 正在抛出我为我的 xml 文件 (WebContent/myxml.xml) 提供的路径。
我可以看到,它在我的 Eclipse 路径(/home/aneesh/eclipse/WebContent/myxml.xml)中搜索相同的 xml 文件。并抛出 FileNotFoundException。我该如何解决这个问题?
1. class which accessing xml file
class Constants {
public static String name;
static {
initializeConstants();
}
public static void initializeConstants() {
try {
//initializing Constants
//"Reading file"
File xmlFile = new File("WebContent/myxml.xml");
.......
//file is getting read perfectly and "name" is initialized
}
}
2. class accepting static variable Constants.name
// accepting value of 'name' using Constants.name successfully
// writing a method which is accepting some parameters and using Constants.name.
// writing a "main" method and calling this class's methods will work perfectly.
// value of Constants.name will be accessible here.
3. REST API created which will call methods of second class with parameters.
4. Webscript client created for consuming above created API.
// Here the exception is coming.
// Eception is throwing from the class Constants
//Exception from Constants : FileNotFoundException
java.io.FileNotFoundException: /home/aneesh/eclipse/eclipse/WebContent/myxml.xml (No such file or directory)
那么,为什么在这种情况下它在 eclipse 的路径中寻找文件呢?如何解决?也尝试将其放入 src 文件夹,但无法正常工作。