创建包含 .ser 文件的以随机数字作为文件夹名称的目录
因此,在我们的 weblogic 10.3 服务器中,会生成具有随机名称的文件夹(例如“7nxxd”、“tpy16q”)。每个目录都有相同的子目录结构:
<randomfilename>/.tld_cache/WEB-INF/tld/
c.tld/
fn.tld/
spring-form.tld/
fmt.tld/
spring.tld/
tiles-jsp.tld/
每个目录都有 2 个文件:crc.ser 和 des.ser。
为什么要创建这些文件?除了随机名称之外,还有其他方法可以指定它们写入的目录吗?
So in our weblogic 10.3 server there are folders being generated with random names (such as "7nxxd", "tpy16q"). Inside each of these is the same subdirectory structure:
<randomfilename>/.tld_cache/WEB-INF/tld/
c.tld/
fn.tld/
spring-form.tld/
fmt.tld/
spring.tld/
tiles-jsp.tld/
Each of these directories has 2 files: crc.ser and des.ser.
Why are these files being created? Is there a way to specify the directory that they get written to besides the random name?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JavaEE 服务器会经常生成临时工作目录来保存各种项目,例如缓存描述符、编译的 JSP 等。
您可能可以影响它放置它们的位置,但这是特定于服务器的。您需要阅读您的服务器并了解如何执行此操作。
JavaEE servers will frequently generate temporary working directories to hold various items, such as cahced descriptors, compiled JSPs, etc.
You can probably influence where it puts them, but that's server-specific. You'll need to read up on your server and find out how to do that.