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 はそれをで初期化するので、あなたはnullになることはできません

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

valuenullになると、NullPointerExceptionが発生します。

于 2013-02-09T11:37:17.210 に答える
2

inputTextタグ属性requiredをに設定しますtrue

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