存在于包中的Servlet ClassNotFoundException ...为什么?

时间:2015-06-10 06:00:12

标签: java servlets classnotfoundexception

当我保留" MyServletProgram" in" java"包我得到ClassNotFoundException java.MyServletProgram但是当它在默认包中时,程序运行正常。你能说出我哪里错了吗?

This is Servlet class

This is the project heirarchy

This is the navigator view of project

My classpaths

The error when accessing through /MyServletProgram

1 个答案:

答案 0 :(得分:1)

您无法将包命名为java,因为它是禁止的

您可能会遇到异常:

java.lang.SecurityException: Prohibited package name: java

将您的package名称更改为其他名称,它将完美无瑕地运作。