こんにちは、最近お世話になっている者です。今回は Guice についてご教授ください。
環境
eclipse
JPA
google Guice
前提・実現したいこと
Guice を使って JPA を操作したいと思い、下記のようなコードを書きました。
が、下記のようなエラーが出てしまい、entitymanager が inject されていないようです。
丸1日悩みましたが解決に至らず質問させていただきました。
どうすれば entitymanager が inject されるようになりますか?
該当のソースコード
Java
1// メインクラス 2package pkg.dao; 3 4import com.google.inject.Guice; 5import pkg.entity.Item; 6 7public class Main { 8 9 public static void main(String[] args) { 10 // TODO Auto-generated method stub 11 ItemDAOInterface dao = Guice.createInjector(new JpaPersistDaoModule()) 12 .getInstance(ItemDAO.class); 13 14 dao.add("fish", 1000, "big", ".", 2); // 2という値は、実際にデータベースに存在するユーザのIDです 15 } 16 17}
Java
1// DAOのインタフェース 2package pkg.dao; 3 4public interface ItemDAOInterface { 5 6 void add(String name, int price, String description, String imagePath, int sellerId); 7 8} 9
Java
1// DAO 2package pkg.dao; 3 4import javax.inject.Inject; 5import javax.persistence.EntityManager; 6import javax.persistence.Persistence; 7import com.google.inject.persist.Transactional; 8 9import pkg.entity.Item; 10 11public class ItemDAO implements ItemDAOInterface { 12 13 @Inject 14 EntityManager em; 15 16 @Transactional 17 public void add(String name, int price, String description, String imagePath, int sellerId) { 18 em.persist(new Item(description, imagePath, name, price, sellerId)); 19 em.flush(); 20 } 21 22}
Java
1// Guice の設定モジュール 2package pkg.dao; 3 4import com.google.inject.AbstractModule; 5import com.google.inject.Inject; 6import com.google.inject.persist.PersistService; 7import com.google.inject.persist.jpa.JpaPersistModule; 8 9public class JpaPersistDaoModule extends AbstractModule { 10 11 @Override 12 protected void configure() { 13 install(new JpaPersistModule("Mercari")); 14 bind(ItemDAOInterface.class).to(ItemDAO.class); 15 bind(JpaPersistInitializer.class); 16 } 17 18 private static class JpaPersistInitializer { 19 20 @Inject 21 public JpaPersistInitializer(PersistService service) { 22 service.start(); 23 } 24 } 25} 26
xml
1<!--persistence.xml--> 2<?xml version="1.0" encoding="UTF-8"?> 3<persistence version="2.1" 4 xmlns="http://xmlns.jcp.org/xml/ns/persistence" 5 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 6 xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd"> 7 <persistence-unit name="Mercari" transaction-type="RESOURCE_LOCAL"> 8 <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider> 9 <class>pkg.entity.Item</class> 10 <exclude-unlisted-classes>false</exclude-unlisted-classes> 11 <properties> 12 <property name="javax.persistence.jdbc.driver" value="org.postgresql.Driver" /> 13 <property name="javax.persistence.jdbc.url" value="jdbc:postgresql://localhost:5432/postgres" /> 14 <property name="javax.persistence.jdbc.user" value="postgres" /> 15 <property name="javax.persistence.jdbc.password" value="postgres" /> 16 </properties> 17 </persistence-unit> 18</persistence> 19
Java
1// エンティティ 2package pkg.entity; 3 4import java.io.Serializable; 5import javax.persistence.*; 6 7 8/** 9 * The persistent class for the items database table. 10 * 11 */ 12@Entity 13@Table(name="items") 14public class Item implements Serializable { 15 private static final long serialVersionUID = 1L; 16 17 @Id 18 @GeneratedValue(strategy=GenerationType.IDENTITY) 19 private Integer id; 20 21 private String description; 22 23 @Column(name="image_path") 24 private String imagePath; 25 26 private String name; 27 28 private Integer price; 29 30 @Column(name="seller_id") 31 private Integer sellerId; 32 33 public Item() { 34 } 35 36 public Item(String description, String imagePath, 37 String name, Integer price, Integer sellerId) { 38 setDescription(description); 39 setImagePath(imagePath); 40 setName(name); 41 setPrice(price); 42 setSellerId(sellerId); 43 } 44 45 public Integer getId() { 46 return this.id; 47 } 48 49 /*public void setId(Integer id) { 50 this.id = id; 51 }*/ 52 53 public String getDescription() { 54 return this.description; 55 } 56 57 public void setDescription(String description) { 58 this.description = description; 59 } 60 61 public String getImagePath() { 62 return this.imagePath; 63 } 64 65 public void setImagePath(String imagePath) { 66 this.imagePath = imagePath; 67 } 68 69 public String getName() { 70 return this.name; 71 } 72 73 public void setName(String name) { 74 this.name = name; 75 } 76 77 public Integer getPrice() { 78 return this.price; 79 } 80 81 public void setPrice(Integer price) { 82 this.price = price; 83 } 84 85 public Integer getSellerId() { 86 return this.sellerId; 87 } 88 89 public void setSellerId(Integer sellerId) { 90 this.sellerId = sellerId; 91 } 92 93}
発生しているエラーメッセージ
WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by com.google.inject.internal.cglib.core.$ReflectUtils$2 (file:/C:/Users/brawn/eclipse-workspace/Mercari/WebContent/WEB-INF/lib/guice-3.0.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain) WARNING: Please consider reporting this to the maintainers of com.google.inject.internal.cglib.core.$ReflectUtils$2 WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations WARNING: All illegal access operations will be denied in a future release Exception in thread "main" com.google.inject.ProvisionException: Guice provision errors: 1) Error in custom provider, java.lang.NullPointerException while locating com.google.inject.persist.jpa.JpaPersistService while locating javax.persistence.EntityManager for field at pkg.dao.ItemDAO.em(ItemDAO.java:11) while locating pkg.dao.ItemDAO
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。