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.
我的 Java Maven Web 应用程序的“服务器”和“客户端”有独立的文件夹。
我的“客户端”文件夹将位于我系统上的某个位置,例如“C:/xampp/htdocs/client”。
在构建“服务器”的战争文件时,我可以将此“客户端”文件夹或该文件夹的内容添加到我的 WEB-INF 或战争文件中的其他位置吗?
在您的网络 pom 中包含该文件夹作为 Maven 资源
<build> ... <resources> <resource> <directory>C:/xampp/htdocs/client</directory> </resource> ... </resources> ...
构建战争文件时,将“客户端”文件夹包含到资源中。然后在构建您的战争文件时文件将被存档。另一种方法是对文件夹WEB-INF内的或其他位置进行符号链接。WebContent
WEB-INF
WebContent