正在加载图片...
编写 Entity Bean类(Part2) //Part1 public String ejbCreate(String state Code, float tax eibLoad throws CreateException 容器将数据从数据库中 if(state Code ==null throw new Create Exceptio 读取到 entity bean中后,会调用 bean类的 webload方法。 this state Code= state Code: 在此方法中可以对读出 this. taxRate taxRate 的数据进行一些预处理 return null public void ejb Postcreate(String state Code, float taxRateX3 public void ejbload if(state Code != null) state Code trim public void ejbstoreot public void ejbRemove0t public void unsetEntity Contextot public void setEntity Context(Entity Context contextt public void ejbActivateot ublic void ejbPassivate(仆 }编写Entity Bean类(Part 2) //Part1 public String ejbCreate(String stateCode, float taxRate) throws CreateException{ if(stateCode == null){ throw new CreateException("The State Code is required."); } this.stateCode = stateCode; this.taxRate = taxRate; return null; } public void ejbPostCreate(String stateCode, float taxRate){} public void ejbLoad(){ if(stateCode != null) stateCode.trim(); } public void ejbStore() {} public void ejbRemove() {} public void unsetEntityContext() {} public void setEntityContext(EntityContext context) {} public void ejbActivate() {} public void ejbPassivate() {} } ejbLoad: 容器将数据从数据库中 读取到entity bean中后,会调用 bean类的ejbLoad方法。 在此方法中可以对读出 的数据进行一些预处理
<<向上翻页向下翻页>>
©2008-现在 cucdc.com 高等教育资讯网 版权所有