简体   繁体   English

创建带有随机数作为文件夹名称的目录,其中包含.ser文件

[英]Directories with random numbers as foldername being created that contain .ser files

So in our weblogic 10.3 server there are folders being generated with random names (such as "7nxxd", "tpy16q"). 因此,在我们的weblogic 10.3服务器中,使用随机名称(例如“ 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. 每个目录都有2个文件:crc.ser和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? 除了随机名称,是否有办法指定他们要写入的目录?

JavaEE servers will frequently generate temporary working directories to hold various items, such as cahced descriptors, compiled JSPs, etc. JavaEE服务器会经常生成临时工作目录来保存各种项目,例如,高速缓存的描述符,已编译的JSP等。

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. 您需要在服务器上阅读并了解如何执行此操作。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM