Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们能否在 Struts 1 中在会话中加载和设置属性文件,这样我们就不需要在方法级别的每个请求中加载属性文件。谁能帮我解决这个问题。
Properties props = ... // load your properties file request.getSession().setAttribute("mypropertiesfile", props);
但是使用 session 来存储这样的东西并不是一个好习惯,为什么不简单地使用缓存呢?