【问题标题】:FacesValidator is not workingFacesValidator 不工作
【发布时间】:2017-05-26 15:49:04
【问题描述】:

您好,我在通过单独的 Validator 实例验证 html 组件时遇到问题。

永远不会调用验证! SYSO 永远不会写入控制台!

我已经尝试重新部署、更新项目、清理并重新启动、重新安装 glassfish 工具、重新安装 glassfish、重新安装 eclipse。

这是我的项目设置:

registration.xhtml:

<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:f="http://xmlns.jcp.org/jsf/core"
    xmlns:h="http://xmlns.jcp.org/jsf/html"
    xmlns:c="http://java.sun.com/jsp/jstl/core"
    xmlns:p="http://xmlns.jcp.org/jsf/passthrough"
    xmlns:jsf="http://xmlns.jcp.org/jsf">
<h:head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
    <title>Registration</title>
    <h:outputStylesheet library="css" name="stylesheet.css" target="head" />
    <h:outputScript library="js" name="jquery-3.1.1.min.js" target="head" />
    <h:outputScript library="js" name="jquery-ui-1.12.1.min.js"
        target="head" />
</h:head>
<h:body>
        <h:form prependId="false">              
        <h:inputSecret id="password" binding="#{localPasswordComponent}"  p:placeholder="Password"
                value="#{registrationBean.password}" required="true"
                requiredMessage="Please enter password"
                validatorMessage="Please enter at least 8 characters">
                <f:validateLength minimum="8" />
            </h:inputSecret>
            <h:message for="password" style="color:red" tooltip="true" showSummary="true" showDetail="true"/>
            <br />

            <h:inputSecret id="confirmPassword" p:placeholder="Confirm Password"
                required="#{not empty localPasswordComponent.value}"
                requiredMessage="Please confirm password"
                validatorMessage="Passwords are not equal">
                <f:validator validatorId="equalsValidator" />
                <f:attribute name="equalsValue" value="#{localPasswordComponent.value}" />
            </h:inputSecret>
            <h:message for="confirmPassword" tooltip="true" showSummary="true" showDetail="true"/>
            <br />
            <input jsf:id="submit" name="submit" value="Register" type="submit">
                <f:ajax render="@all" listener="#{registrationBean.register}" />
            </input>
        <br />
        </h:form>
    </h:body>
</html>

EqualsValidator.java:

package de.somepackage.validator;

import javax.faces.application.FacesMessage;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import javax.faces.validator.FacesValidator;
import javax.faces.validator.Validator;
import javax.faces.validator.ValidatorException;

@FacesValidator(value="equalsValidator")
public class EqualsValidator implements Validator {

    @Override
    public void validate(FacesContext context, UIComponent component, Object value) throws ValidatorException {
        System.out.println("Wow this is called!!!!!!!!!!!!!");
        Object otherValue = component.getAttributes().get("equalsValue");

        if (value == null || otherValue == null) {
            return; // Let required="true" handle.
        }

        if (!value.equals(otherValue)) {
            FacesMessage msg =
                    new FacesMessage("Values are not equal.");
            msg.setSeverity(FacesMessage.SEVERITY_ERROR);
            throw new ValidatorException(msg);
        }
    }

}

faces-config.xml:

<?xml version='1.0' encoding='UTF-8'?>

<faces-config version="2.1"
    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-facesconfig_2_1.xsd">

</faces-config>

web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://xmlns.jcp.org/xml/ns/javaee"
    xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
    id="PeeDeeWebFrontend" version="3.1">
    <display-name>PeeDee</display-name>
    <context-param>
        <param-name>javax.faces.PROJECT_STAGE</param-name>
        <param-value>${webapp.projectStage}</param-value>
    </context-param>
    <context-param>
        <param-name>javax.faces.PARTIAL_STATE_SAVING</param-name>
        <param-value>${webapp.partialStateSaving}</param-value>
    </context-param>
    <context-param>
        <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
        <param-value>${webapp.stateSavingMethod}</param-value>
    </context-param>
    <context-param>
        <param-name>javax.faces.VALIDATE_EMPTY_FIELDS</param-name>
        <param-value>true</param-value>
    </context-param>
    <context-param>
        <param-name>javax.faces.INTERPRET_EMPTY_STRING_SUBMITTED_VALUES_AS_NULL</param-name>
        <param-value>true</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>/web/*</url-pattern>
    </servlet-mapping>
    <welcome-file-list>
        <welcome-file>web/index.xhtml</welcome-file>
    </welcome-file-list>
</web-app>

glassfish-web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE glassfish-web-app PUBLIC "-//GlassFish.org//DTD GlassFish Application Server 3.1 Servlet 3.0//EN" "http://glassfish.org/dtds/glassfish-web-app_3_0-1.dtd">
<glassfish-web-app>
    <context-root>/PeeDeeWebFrontend</context-root>
    <class-loader delegate="true"/>
      <jsp-config>
        <property name="keepgenerated" value="true"></property>
      </jsp-config> 
</glassfish-web-app>

版本:

  • GlassFish Server 开源版 4.1.1(内部版本 1)
  • Eclipse Jee Neon.1 版本 (4.6.1) 内部版本 ID:20160913-0900
  • 2016 年 11 月 15 日发布的 JSF 2.2.14(最初为 2.1)
  • JAVA_VERSION="1.8.0_102" OS_NAME="Windows" OS_VERSION="5.2" OS_ARCH="amd64"
  • Maven 3(我认为)
  • 来自http://www.oracle.com/technetwork/java/javaee/downloads/index.html 的 Java EE 7u2

我使用 Java EE 7u2 安装来配置我的项目。

由于我对这个 JSF、Glassfish、JSP 和其他 Web 开发东西完全陌生,所以我不知道为什么这不起作用,因为有几个例子表明它是这样的。有人可以给我一个答案或知道为什么这不起作用吗?

注意:我正在使用 Glassfish 工具在 Eclipse 中运行服务器

【问题讨论】:

  • 什么不起作用? System.out.println 被调用了吗?您是否清理、构建和重新部署所有内容?
  • @ImproveAnything 您粘贴了所有代码但错过了什么问题是什么问题。

标签: validation jsf jsf-2


【解决方案1】:

在“流程验证”阶段分别应用渲染器和验证器。

有些渲染是隐式的:

  • javax.faces.Boolean
  • javax.faces.Byte
  • javax.faces.Character
  • javax.faces.Short
  • javax.faces.Integer
  • javax.faces.Long
  • javax.faces.Float
  • javax.faces.Double
  • javax.faces.BigDecimal
  • javax.faces.BigInteger

这意味着它们会自动应用于字段。因此,如果您有一个 bean 属性“int”和一个绑定此属性的值输入,并且您在其上放置一个字母并提交该值,那么隐式 javax.faces.Integer 将自动应用并引发异常。此时,如果您对该输入有验证器,则永远不会调用它。

例如:

<form jsf:id="id_form">
   <input jsf:id="id_input" type="text" value="#{bean.intValue}">
      <f:validator validatorId="someValidator"/>
   </input>
   <input jsf:id=id_submit type="submit" jsf:action="#{bean.someAction}"/>
</form>

【讨论】:

    【解决方案2】:

    正如我在自己身上找到的答案,以下代码不会引发运行时错误,只是一个编译器警告:

    <input jsf:id="submit" name="submit" value="Register" type="submit">
        <f:ajax render="@all" listener="#{registrationBean.register}" />
    </input>
    

    改成:

    <h:commandButton value="Submit" action="#{registrationBean.register()}" />
    

    这解决了我的问题,并且找到并调用了 EqualsValidator!

    【讨论】:

      猜你喜欢
      • 2012-06-03
      • 2011-11-24
      • 1970-01-01
      • 2015-06-10
      • 2011-11-26
      • 2019-02-22
      • 2021-01-10
      • 1970-01-01
      相关资源
      最近更新 更多