0

我正在尝试使用主要面孔库设置 JSF 项目当我运行此设置时,它显示以下错误

org.apache.jasper.JasperException: javax.servlet.ServletException: null source
org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:54
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:417)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
javax.servlet.http.HttpServlet.service(HttpServlet.java:803)

我无法找出背后的原因。
以下是通过设置

以下是我包含在 web-inf/lib 中的库
1. jsf-api-2.0.3.jar
2. jsf-impl-2.0.3.jar
3. jstl-1.0.2.jar
4. primefaces-3.4.jar

以下是 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">

    <context-param>
        <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
        <param-value>server</param-value>
    </context-param> 

    <context-param>
        <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
        <param-value>.xhtml</param-value>
    </context-param>

    <context-param>
        <param-name>primefaces.skin</param-name>
        <param-value>none</param-value>
    </context-param>


    <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>

    <welcome-file-list> 
        <welcome-file>index.jsp</welcome-file>
     </welcome-file-list>

    <listener>
        <listener-class>
            com.nsf.ecap.web.base.ECapStartUpServlet
        </listener-class>
    </listener>

</web-app>


登录.xhtml

<h:body>   

 <CENTER>  

     <h:panel header="Login Form">    
     <h:Form>  
         <h:PanelGrid columns="2" cellpadding="2">  
         <h:outputLabel value="UserName" for="#{loginBBean.userInfo.username}"> </h:outputLabel>
         <h:inputText value="#{loginBBean.userInfo.username}" label="UserName">   </h:inputText>  
         <h:outputLabel value="Password" for="#{loginBBean.userInfo.password}"></h:outputLabel>  
         <h:inputSecret value="#{loginBBean.userInfo.password}"></h:inputSecret>  
         <h:commandButton value="Login" type="submit" action="#{loginBBean.doLogin}"></h:commandButton>   

        </h:PanelGrid>  

    <h:messages>
    </h:messages>



    </h:Form>
    </h:panel>
</CENTER>  
</h:body>  
</html> 


索引.jsp

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">

    <title>My JSP 'index.jsp' starting page</title>    
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">      
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
  </head>

  <body>        
    <jsp:forward page="jsp/login/login.jsf"/>      
  </body>
</html>
4

1 回答 1

5

“我的 JSP 'index.jsp' 起始页”?请阻止/忽略/丢弃您正在阅读的教程。它只会让您完全困惑并教您不良做法


至于您的图书馆列表:

以下是我包含在 web-inf/lib 中的库

  1. jsf-api-2.0.3.jar
  2. jsf-impl-2.0.3.jar
  3. jstl-1.0.2.jar
  4. primefaces-3.4.jar

首先,JSTL版本不对。它应该至少是 JSTL 1.1 或者最好是 1.2。否则,EL(表达式语言,那些${}/ #{})将无法工作。删除 jstl-1.0.2.jar 并将jstl-1.2.jar放置到位。

此外,它看起来还不错。令我惊讶的是,您拥有超过 2 年的 JSF API/impl 版本,而您拥有相当新的(不到 2 周)PrimeFaces 版本。我会将这些 JSF API/impl 版本对齐为最新可用的. 它目前已经是2.1.13(注意:它现在只包含一个 JAR 文件 javax.faces.jar 而不是两个 JAR 文件)。


至于你的web.xml

<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">

这被宣布符合 Servlet 2.5 规范,该规范已经超过 6 年了。你确定你正在运行这样一个过时的容器吗?鉴于 JSF 和 JSTL 库的存在,我假设您使用的是 Tomcat。当前的 Tomcat 版本 7.x 已经存在 2 年多了,并且与 Servlet 3.0 兼容。您应该声明您web.xml匹配目标容器的最高支持版本。

<web-app version="3.0" 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_3_0.xsd">

此外,这些javax.faces.STATE_SAVING_METHODjavax.faces.DEFAULT_SUFFIX条目已经代表默认值。只需摆脱它们以最大程度地减少噪音。


至于你的login.xhtml

<h:Form>  
     <h:PanelGrid columns="2" cellpadding="2">  

标签名称区分大小写。和<h:Form>根本<h:PanelGrid>不存在。它是<h:form><h:panelGrid>

<CENTER>  

虽然不是立即成为问题,但这个 HTML 元素自 1998 年以来已被弃用,取而代之的是 CSS。此外,以大写风格而不是<center>90 年代以前的 HTML 风格非常典型的形式看到它,并不会给我留下您正在阅读最新和正确的书籍/教程来学习 Web 开发的印象。您应该确保您的学习资源是最新的。


至于你的index.jsp:这完全没用。完全删除它。只需更改您web.xml

<servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.jsf</url-pattern>
</servlet-mapping>

<welcome-file-list> 
    <welcome-file>index.jsp</welcome-file>
</welcome-file-list>

<servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.xhtml</url-pattern>
</servlet-mapping>

<welcome-file-list> 
    <welcome-file>login.xhtml</welcome-file>
</welcome-file-list>

当您在网络浏览器中访问时,这种方式login.xhtml将显示为“主页” 。/请注意,您不应该也不再需要*.jsfURL 模式。


也可以看看:

于 2012-09-13T11:34:50.463 回答