如何从JSF中的/ WEB-INF文件夹获取属性文件?

前端之家收集整理的这篇文章主要介绍了如何从JSF中的/ WEB-INF文件夹获取属性文件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在/ WEB-INF中有一些属性文件.我想在JSF托管bean中加载它.有没有办法做到这一点?

解决方法

使用 ExternalContext#getResource()ExternalContext#getResourceAsStream(),其中传递webcontent相对路径.

例如.:

ExternalContext externalContext = FacesContext.getCurrentInstance().getExternalContext();
Properties properties = new Properties();
// ...
properties.load(externalContext.getResourceAsStream("/WEB-INF/file.properties"));

这将委托给ServletContext#getResource()/ getResourceAsStream().

也可以看看:

> Where to place and how to read configuration resource files in servlet based application?

原文链接:https://www.f2er.com/html/231747.html

猜你在找的HTML相关文章