请问java web软件登陆后转到的jsp页面一片空白是啥原因啊?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了请问java web软件登陆后转到的jsp页面一片空白是啥原因啊?相关的知识,希望对你有一定的参考价值。
这个登陆页面是没有问题的,
然后跳转的页面就什么都没有。。。
而能跳转,说明数据库连接是正确的。 参考技术A 这原因很多,可能已报错,或者页面无元素。或者有多个index.jsp。你挑错了一个,搞不定可留下q追问
你好,我QQ是1548886218,可否指点一下
追答谢谢土豪打赏!
本回答被提问者采纳 参考技术B <?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
"http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
<constant name="struts.devMode" value="false" />
<package name="shop" namespace="/" extends="struts-default">
<!-- 配置首页访问的action -->
<action name="index" class="indexAction">
<result name="index">/WEB-INF/jsp/index.jsp</result>
</action>
<!-- 配置访问注册的action -->
<action name="user_*" class="userAction" method="1">
<result name="registPage">/WEB-INF/jsp/regist.jsp</result>
</action>
</package>
</struts>
这个是applicationContext的配置
<!-- Action的配置 ===========================-->
<!-- 首页访问的Action -->
<bean id="indexAction" class="in.itcast.shop.index.action.IndexAction" scope="prototype">
</bean>
<!-- 配置验证码Action -->
<!-- 用户模块的Action -->
<bean id="userAction" class="in.itcast.shop.user.action.UserAction" scope="prototype">
<!-- 注入Service -->
</bean>
这是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的核心监听器 -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
<!-- 配置Struts2的核心过滤器 -->
<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>
<display-name></display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
package in.itcast.shop.index.action;
import com.opensymphony.xwork2.ActionSupport;
/*
* 引入首页访问Action
*/
public class IndexAction extends ActionSupport
/**
*
*/
private static final long serialVersionUID = 1L;
public String execute()
return "index";
以上是关于请问java web软件登陆后转到的jsp页面一片空白是啥原因啊?的主要内容,如果未能解决你的问题,请参考以下文章
java web如何实现:新用户在注册界面注册后,点击 submit 按钮,自动跳转到登陆页面?