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.
当前,会话存储将所有会话文件保存在适合会话状态文件的系统相关文件夹中。
但是在我的一个应用程序中,我希望将会话文件保存在一个特殊的目录中。
我可以更改会话存储的根目录吗?
是的,这很容易。从应用程序上下文:
ApplicationContext.getLocalStorage().setDirectory(new File("/mydirectory"));
我经常在 GUI 测试期间使用它,以便我可以预先设置测试所需的几何图形(而不是在每次测试启动时强制移动和调整大小)。