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.
我们可以在eclipse中创建一个资源文件夹并将hibernate/spring配置文件放入。
当我们编译为war时,这些资源真正放在war文件的哪里?
资源文件夹将与相应的源包合并。
就像如果您在com.mycomp.mypkg包中的src文件夹下有源代码,并且在同一个包中的资源文件夹下有您的配置文件,那么 maven 会将您的代码和配置文件放在同一个包中。
在这里详细解释