1 / 16

EntityManager と EJB QL

EntityManager と EJB QL. EJB 3.0 コース 第 8 回. ここでの目標. Entity Manager の使いかた、とりわけ EJB QL について理解する。. EntityManager の利用. EntityManager と @Inject. @Inject private EntityManager em; EntityManager は、データの永続管理を受け持つオブジェクト。データベースと接続して、さまざまな処理を行う。

myrrh
Télécharger la présentation

EntityManager と EJB QL

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. EntityManager と EJB QL EJB 3.0 コース 第8回

  2. ここでの目標 • Entity Manager の使いかた、とりわけ EJB QL について理解する。

  3. EntityManagerの利用

  4. EntityManager と @Inject @Inject private EntityManager em; • EntityManager は、データの永続管理を受け持つオブジェクト。データベースと接続して、さまざまな処理を行う。 • @Inject は、Dependency Injection (依存性注入)を行うためのアノテーション。EntityManager は、コンテナによって依存性注入される。

  5. EntityManager#find public Employee findEmployeeByEmpNo(int empNo) { return ((Employee) em.find("Employee",empNo)); } • EntityManager の find メソッドは、データベースからempNo という主キーで指定したデータを検索し、検索結果として Employee オブジェクトを返す。

  6. EntityManager#persist public void addEmployee(int empNo, String eName, double sal) { if (emp == null) emp = new Employee(); emp.setEmpNo(empNo); emp.setEname(eName); emp.setSal(sal); em.persist(emp); } • EntityManager の persist メソッドで、Entity Bean を永続化している。つまり、データをデータベースで管理するようにしている。

  7. EntityManager#remove @Stateless public class EmployeeDemoSessionEJB implements EmployeeDemoSession { public void removeEmployee(Integer employeeId) { Employee employee = (Employee)em.find("Employee", employeeId); em.remove(employee); } } • EntityManager の remove メソッドで、データベースで管理されているオブジェクトを削除できる。

  8. データベースの更新 Employee emp3 = ef.findEmployeeByEmpNo(empNo); emp3.setSal(100000); • Entity Bean のプロパティの内容を変化させると、その内容がデータベースに反映される。

  9. EJB QL

  10. EJB QL とは何か • EJBでデータベースを操作するためのクエリー言語 • データベースに依存しないかたちでクエリーを記述できる

  11. EJB QL のパターン select … from … where … • EntityManager の createQuery, createNamedQuery といったメソッドから利用する。

  12. createQueryとEJB-QLの利用 public Collection findAllEmployees() { Collection employees = em.createQuery( "SELECT employee FROM Employee employee") .getResultList(); return employees; } public Collection findEmployeesByLastName(String lastName) { Collection employees = em.createQuery( "SELECT employee FROM Employee employee WHERE employee.lastName = :lastname") .setParameter("lastname", lastName).getResultList(); return employees; }

  13. createQueryとEJB-QLの利用 public Collection findManyProjectsByQuery(Vector params) { Collection projects = em.createQuery( "SELECT project FROM Project project WHERE project.name LIKE :projectName") .setParameter("projectName", params.firstElement()) .getResultList(); return projects; } public int changeCityName(String oldName, String newName) { StringBuffer buffer = new StringBuffer(); buffer.append("UPDATE Address address SET address.city = '"); buffer.append(newName); buffer.append("' WHERE address.city = '"); buffer.append(oldName); buffer.append("'"); String ejbqlString = buffer.toString(); return em.createQuery(ejbqlString).executeUpdate(); }

  14. NamedQueryの利用 @Entity @Table(name="EJB_PROJECT") @NamedQuery( name="findProjectByName", queryString="SELECT project FROM Project project WHERE project.name = :name" ) public class Project implements Serializable {…..} public Project findProjectByName(String name) { Project proj = (Project)em.createNamedQuery("findProjectByName") .setParameter("name", name).getSingleResult(); proj.getTeamLeader(); return proj; }

  15. 課題 (1) • Entity Bean のサンプルに、「指定したIDを持つ従業員の給料を100上げる」という機能を追加してください。

  16. 課題 (2) • 図書館の本の検索アプリケーションを作成します。例えば “Java”を引数に与えたら、”Java”という文字がタイトルに含まれる本のリストを出力するような機能を持つアプリケーションを作成してください。 • 本のデータはダウンロードできます。

More Related