0

我现在正在工作的项目中有另一个问题,我到处搜索以找到解决方案,但找不到...

我有一个具有 id、firstName、lastName 属性的 bean 类,它具有公共 getter 和 setter,以及一个 updateEmployee 方法。

我正在使用以下 jsf 页面来获取数据库表值。

当我单击更新按钮时显示成功页面,但数据库中的值没有改变。谁能告诉我为什么 vales 没有在数据库中发生变化的原因?

JSF 页面:

<h:dataTable value="#{tableBean.employeeList}" var="employee" border="1">  
   <h:column>  
          <f:facet name="header">First name</f:facet>  
          <h:inputText value="#{employee.firstName}" />  
   </h:column>  

   <h:column>  
          <f:facet name="header">Last name</f:facet>  
          <h:inputText value="#{employee.lastName}" />  
   </h:column>  
</h:dataTable>  
<h:commandButton value = "update" action="#{employee.updateEmployee}"/> 

员工.java:

public String updateEmployee(){  
   String query = "update employee set firstName = ?,lastName = ? where id = 1";           
   pstmt = conn.prepareStatement(query);  
   pstmt.setString(2,this.firstName);  
   pstmt.setString(3,this.lastName);   
   pstmt.executeUpdate(); // execute update statement  
   conn.commit();  
   committed = true;  
   return "success.xhtml";  
   }catch (Exception e) {  
       e.printStackTrace();  
       return null;  
   } finally {  
      try{  
         if (!committed) conn.rollback();  
              pstmt.close();  
          conn.close();  
       }catch(Exception e){  
            e.printStackTrace();  
      }  
    }  
 } 

谢谢,拉姆

4

1 回答 1

1

发布的代码很奇怪。您不是在包含所有已编辑员工的 bean 上调用 action 方法,而是在 bean 上调用 action 方法,该方法本身表示一个完全空白的员工实例,它不是显示的员工之一桌子。

开始,更换

<h:commandButton value="update" action="#{employee.updateEmployee}" /> 

经过

<h:commandButton value="update" action="#{tableBean.updateEmployees}" /> 

它会变得更加简单。

于 2012-10-19T02:32:41.167 回答