0

JavaでRESTful Webサービスを使用している間。ブール値を返すことができません。このコードでは、重複をチェックしています。重複が存在する場合は、ループから抜け出す必要があります。そうでない場合は、さらに挿入を続行する必要があります。この場合、私の ELSE 部分は正常に動作しています。しかし、IFループはエラーを表示して動作していません これは私のコードです。

コード

    public  Boolean addCategory(String catname,String parentid)throws Exception {
            PreparedStatement pst = null;
            boolean resultdata = false;
            boolean resultdata1 = false;
            ResultSet rst=null;
            Statement st = null;
            int flag = 0;
            String sql,sql1 = null;
            try {
                con = getConnection();
                st = con.createStatement();
                sql1="select * from xxx where parent_id='"+parentid+"' and category_description='"+catname+"'";
                    System.out.println("Checks for Duplicate Catgory");
                    rst = st.executeQuery(sql1);
                    System.out.println("ResultSet"+rst);
                        if(rst!=null&&rst.next()){
                        String catname1=(String) rst.getObject("category_description");
                        System.out.println("Category description : "+catname1);
                        System.out.println("Duplicate value is trying to get inserted");
                        return resultdata1;
                    }
else{

/** Is working fine
}

コンソール エラー レポート

Database connection -->
Database established
Checks for Duplicate Catgory
ResultSetcom.mysql.jdbc.JDBC4ResultSet@1c1eceb
Category description : Test3
Duplicate value is trying to get inserted
Jan 21, 2013 10:23:23 AM com.sun.jersey.spi.container.ContainerResponse mapMappableContainerException
SEVERE: The RuntimeException could not be mapped to a response, re-throwing to the HTTP container
java.lang.NullPointerException
4

1 に答える 1

1

addCategory(ParentEntity.java:157)のコードを再確認してください。finallyブロックを使用している場合は、それも確認してください。

于 2013-01-21T06:23:36.680 に答える