当我在 localhost 中编译和部署它时,它工作正常。但是当我创建war文件并将其部署到另一台服务器时,它会弹出错误
HTTP 状态 404 - /IJPWeb/index.jsp 类型状态报告 消息 /IJPWeb/index.jsp 描述 请求的资源 (/IJPWeb/index.jsp) 不可用。 Apache Tomcat/6.0.24
这是 web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>IJPWeb</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>
这是 catalina.out 中出现的一个错误
javax.management.MalformedObjectNameException:无法为 org.apache.catalina.connector.Connector@5a199939java.lang.ClassCastException 创建对象名称:java.net.Inet4Address 无法转换为 java.lang.String
我没有任何 servlet 类。我从我的 JSP (index.jsp) 中调用了一些 Java 方法。知道如何解决这个问题吗?