myeclipse中建立一个工程 index.jsp 能不能删除 5
另外我建立了项目发布了也启动了tomcat但是不能打开浏览器内置的和自己的浏览器都不能错误号是400...
另外我建立了项目 发布了 也启动了tomcat 但是不能打开浏览器 内置的和自己的浏览器都不能 错误号是400
展开
4个回答
展开全部
可以删除,关键你只要在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">
<!--解决中文乱码用spring经典编码过滤器-->
<filter>
<filter-name>encodingFilter</filter-name>
<filter-class>
org.springframework.web.filter.CharacterEncodingFilter
</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>utf-8</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>encodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/classes/applicationContext*.xml
</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<welcome-file-list>
<welcome-file>login.jsp</welcome-file>
</welcome-file-list>
</web-app>
还有就是tomcat没有配置好
<?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">
<!--解决中文乱码用spring经典编码过滤器-->
<filter>
<filter-name>encodingFilter</filter-name>
<filter-class>
org.springframework.web.filter.CharacterEncodingFilter
</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>utf-8</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>encodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/classes/applicationContext*.xml
</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<welcome-file-list>
<welcome-file>login.jsp</welcome-file>
</welcome-file-list>
</web-app>
还有就是tomcat没有配置好
追问
index.jsp
追答
web.xml 这样的话就不能删了
以前的项目能在tomcat下显示吗?
你看看 myeclipse下的server 建立的对不对?
对对代码可能有错误。
希望能有所帮助。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
index.jsp能删,跟一般的JSP页面一样,它只是在你默认访问的页面显示,没多大用。
错误代码400 是说你的访问出错,你看下你的web.xml的配置文件里面的访问名是不是配置好了。
错误代码400 是说你的访问出错,你看下你的web.xml的配置文件里面的访问名是不是配置好了。
追问
index.jsp
改哪个?
追答
下面是用servlet的web.xml的配置文件
This is the description of my J2EE component
This is the display name of my J2EE component
CheckCodeServlet
web.CheckCodeServlet
This is the description of my J2EE component
This is the display name of my J2EE component
FriendServlet匹配名字
web.FriendServlet//这里是你的servlet类名字
CheckCodeServlet
/CheckCode
FriendServlet//这里的匹配 名字和上面的一样所以匹配所以调用上面的web.FriendServlet类
*.do//这里是你的地址栏里面输入得url地址
index.jsp
不知道你是用的上面技术,若有还有什么不明白的再问哈
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
那个是不能删除的,最好要删掉它,404是地址火内置对象错,400好像是客户端错误,重新建个项目,代码复制 应该可以的,要不行截张图过来我帮你看看。
更多追问追答
追问
内置浏览器无法连接
追答
那你可以用自己桌面的浏览器打开试试啊,改内置对象的话会比较烦 ,那你试试桌面的浏览器试试,不行在找我 我帮你找找怎么改内置对象、
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询