我有包含另一个 WAR 的 EAR。项目结构如下图:
project.ear
|-- lib
|-- META-INF
|-- project-web.war
| |-- META-INF
| |-- WEB-INF
| | |-- classes
| | | `-- com
| | | `-- example
| | | `-- services
| | | `-- ListPageService.class
| | |-- lib
| | |-- web.xml
| | `-- weblogic.xml
| `-- content.html
`-- project-services.jar
在 WAR 中,有一个ListPageService
需要读取content.html
文件的 JAX-RS 类。如何访问该文件?