基本上我的项目模型是这样设置的:
ModelFolder
----- src
----- bin 等
----- PropertiesFolder1
-------- File1.properties
-------- File2.properties 等
--- -- PropertiesFolder2
-------- File1.properties
-------- File2.properties 等
----- MainPropertiesFile1.properties
----- MainPropertiesFile2.properties
我正在尝试将它与我的 View 一起使用,这是一个动态 Web 项目,并且在更改后我得到了属性文件以最终加载到我的 Web 项目中
foo.load(new FileInputStream("foo.properties"));
至
foo.load(Thread.currentThread().getContextClassLoader().getResourceAsStream("foo.properties"));
并将项目导出到 JAR 文件中,然后我将其包含在 WEB-INF/lib 中。但是,我不得不向模型添加另一个方法,当我尝试测试该方法时,模型无法读取我的属性文件。我知道我可以使用带有完整路径的 FileInputStream 来让属性文件在模型和视图中工作,但是还有其他选择吗?
我不想在每次切换计算机时都更改完整路径(我在工作中使用 H:\username\...\Java\Workspace,而在家里它只是 C:\Java\Workspace)。
我也不想将我的属性文件移动到不同的文件夹;最后,我不想更改每次测试模型或视图时加载属性文件的方式。
有没有办法做到这一点?
这让我发疯,我尝试了以下所有方法:
try
{
foo.load(this.getClass().getResourceAsStream("foo.properties"));
//foo.load(Thread.currentThread().getContextClassLoader().getResourceAsStream("foo.properties"));
//foo.getClass().getResourceAsStream("foo.properties");
//foo.load(new FileInputStream("foo.properties"));
} catch (IOException ex)
{
al.logIntoProgrammerLog(ex);
}
所有这些行要么在模型中工作,要么在视图中工作。有什么方法可以通过模型中的相对路径调用这些属性文件,然后以某种方式正确地将模型与视图连接起来,以便找到并加载所有文件?
任何帮助将不胜感激; 我是 Java 新手,所以我可能会遗漏一些非常简单的东西。谢谢你。
编辑:
很抱歉没有澄清这一点,模型是一个 Java 项目,而视图是一个在本地 Tomcat 服务器 v6.0 上运行的动态 Web 项目。
更好的(我希望)解释:
我的视图有一个带有以下 doPost 方法的 LoginServlet:
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
{
String username = request.getParameter("usernameField");
String password = request.getParameter("passwordField");
ActivityLogger al = new ActivityLogger();
LoginController l_c = new LoginController();
//loginUser method will call my UserStorage class and
//will return true if UserStorage finds the User with those credentials in the db
//UserStorage is using a prepared sql statement stored in a properties file to find the User
//That properties file is not being read unless I specify the full path to it.
//Both Login and UserStorage are in the Model
if(l_c.loginUser(username, password))
{
//take user to welcome page
}
else
//display error
}
再次感谢