我正在尝试通过tomcat中的webapp加载一个小程序。我有我的类文件,如果我在浏览器中用小程序打开 HMTL 文件,小程序就可以工作。但是,如果我尝试通过 tomcat 服务器打开相同的 HMTL 文件,它会显示ClassNotFoundException
. 我不明白我在这里错过了什么。
我applet.html
在 webapp 的根目录中有 HMTL 文件,在学生应用程序文件夹中有类文件和 jar 文件。我的小程序标签为
<--applet
codebase="studentapp/"
code="studentapp.class"
width="450" height="450"
archive="studentapp.jar" />
当我打开文件时,小程序会识别类applet.html
文件。但是当我尝试通过 tomcat 服务器打开它时localhost:8080/student/applet.html
,它显示异常。