我有以下项目结构:
./WEB-INF/web.xml
./WEB-INF/lib
./WEB-INF/classes/com/a/B.class
./index.jsp
当我尝试将此项目放在tomcat webapp中并尝试执行index.jsp时,我收到错误:
org.apache.jasper.JasperException: Unable to compile class for JSP:
An error occurred at line: 6 in the generated java file
Only a type can be imported. com.a.B resolves to a package
如果我尝试导入任何其他不存在的类名,我会得到完全相同的错误。
这是我的web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>index_canvas.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>B</servlet-name>
<servlet-class>com.a.B</servlet-class>
</servlet>
</web-app>
有什么想法吗?
谢谢!
答案 0 :(得分:0)
我使用动态链接文件,我通过将类复制到适当的位置来解决问题。它可能与我不知道的权限问题有关。至少现在我确定这个错误与找不到课程有关。
感谢您的协助。