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.
我正在尝试在树脂下运行旧的 servlet。我已将其部署为战争文件。启动树脂后有一个目录。它包含带有 WEB-INF/lib/ic.jar (fatjar)、jsp 等的 Webcontent 目录。在提取这个 ic.jar 时,我看到了 com/x/y/z 包,但是在尝试访问 servlet 页面时,我得到了一个错误:包 com.xyz 不存在。谁能给我任何线索?
jar 需要在 WEB-INF/lib 中,而不是在 WEB-INF 中。
提取 JAR 文件时,您应该看到
com/x/y/z/ClassName.class
不是
com.x.y.z/ClassName.class
假设你写的不是你看到的总结(或错字)。