0

我有一个 JSF 验证器,用于验证来自表单的输入。

当我插入简单字符串或重复字符串时,它工作正常。但是,当我不输入任何内容时,正确的消息将是This field cannot be empty!" : " '" + s + "' is not a valid name!,但我什么也没有得到。你能帮我找到代码逻辑的问题吗?

// Validate Datacenter Name
    public void validateDatacenterName(FacesContext context, UIComponent component, Object value) throws ValidatorException, SQLException
    {

        String l;
        String s = value.toString().trim();

        if (s != null && s.length() > 18)
        {
            throw new ValidatorException(new FacesMessage(FacesMessage.SEVERITY_ERROR,
                    "  Value is too long! (18 digits max)", null));
        }

        try
        {
//            l = Long.parseLong(s);
//            if (l > Integer.MAX_VALUE)
//            {
//                throw new ValidatorException(new FacesMessage(FacesMessage.SEVERITY_ERROR,
//                        "  '" + l + "' is too large!", null));
//            }
        }
        catch (NumberFormatException nfe)
        {
            l = null;
        }


        if (s != null)
        {

            if (ds == null)
            {
                throw new SQLException("Can't get data source");
            }

            Connection conn = null;
            PreparedStatement ps = null;
            ResultSet rs;
            int cnt = 0;
            try
            {
                conn = ds.getConnection();
                ps = conn.prepareStatement("SELECT count(1) from COMPONENTSTATS where NAME = ?");
                ps.setString(1, s);
                rs = ps.executeQuery();

                while (rs.next())
                {
                    cnt = rs.getInt(1);
                }

                if (cnt > 0)
                {
                    throw new ValidatorException(new FacesMessage(FacesMessage.SEVERITY_ERROR,
                            "  '" + s + "' is already in use!", null));
                }

            }
            catch (SQLException x)
            {
                throw new ValidatorException(new FacesMessage(FacesMessage.SEVERITY_ERROR,
                        "  SQL error!", null));
            }
            finally
            {
                if (ps != null)
                {
                    ps.close();
                }
                if (conn != null)
                {
                    conn.close();
                }
            }
        }
        else
        {
            throw new ValidatorException(new FacesMessage(FacesMessage.SEVERITY_ERROR,
                    s.isEmpty() ? "  This field cannot be empty!" : "  '" + s + "' is not a valid name!", null));
        }

    }
4

2 回答 2

4

那是因为您只检查您的 s 是否为 != null。

更改if (s != null)并重if (s != null && s.lenght() > 0)试。

顺便说一句,你String s 不能为空,因为你用它初始化它

String s = value.toString().trim();

value如果您为空,这将导致 NullPointerException 。

于 2013-02-09T11:37:17.210 回答
2

Set inputText tag attribute required to true

<h:inputText value="#{backingBean.input}" required="true" 
        requiredMessage="Input is empty!">
于 2013-02-09T12:07:54.127 回答