我是使用属性文件还是仅使用平面文件来存储 JSP 中的字符串列表?
我有一个 config.properties 文件,我的 JSP 页面使用它来获取配置。我需要创建一个白名单,其中只包含字符串。由于属性文件就像键值对,我是否需要另一个whitelist.txt或其他东西?或者我可以在属性文件本身中指定一个项目数组吗?
I have a config.properties file which my JSP page uses to get configurations from. I need to create a whitelist, which just contains strings. Since property files are like key value pairs do I need to have another whitelist.txt or something? or can I specify an array of items in properties file itself?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常在这种情况下,我使用一个简单的 .txt 文件并使用 commons-io 或 guava 读取它:
Usually in this cases I use a simple .txt file and read it with commons-io or guava: