3

私は試してきましたspring-data-jpaリファレンス ドキュメントと以前の春の知識の助けを借りて、spring-data-jpa 構成をセットアップしましたが、Repository常に@Autowirednull が返されます。ここで他の質問を参照しましたが、解決策がわかりません。

私のApplicationContext構成は


@Configuration
@EnableJpaRepositories("devopsdistilled.operp.server.data")
@EnableTransactionManagement
@PropertySource("server/jdbc.properties")
@ComponentScan("devopsdistilled.operp.server.data")
public class JpaContext {

    @Inject
    private Environment env;

    @Value("devopsdistilled.operp.server.data.entity")
    private String packagesToScan;

    @Bean
    public static PropertySourcesPlaceholderConfigurer getPropertySourcesPlaceholderConfigurer() {
        return new PropertySourcesPlaceholderConfigurer();
    }

    @Bean
    public DataSource dataSource() {
        BasicDataSource dataSource = new BasicDataSource();
        dataSource.setDriverClassName(env.getProperty("jdbc.driverClassName"));
        dataSource.setUrl(env.getProperty("jdbc.url"));
        dataSource.setUsername(env.getProperty("jdbc.username"));
        dataSource.setPassword(env.getProperty("jdbc.password"));
        dataSource.setInitialSize(2);
        dataSource.setMaxActive(10);
        return dataSource;
    }

    @Bean
    public JpaVendorAdapter jpaVendorAdapter() {
        HibernateJpaVendorAdapter jpaVendorAdapter = new HibernateJpaVendorAdapter();
        jpaVendorAdapter.setDatabase(Database.MYSQL);
        jpaVendorAdapter.setGenerateDdl(true);
        jpaVendorAdapter.setShowSql(true);
        jpaVendorAdapter
                .setDatabasePlatform("org.hibernate.dialect.MySQL5Dialect");
        return jpaVendorAdapter;
    }

    @Bean
    public LocalContainerEntityManagerFactoryBean entityManagerFactory() {
        LocalContainerEntityManagerFactoryBean emf = new LocalContainerEntityManagerFactoryBean();
        emf.setDataSource(this.dataSource());
        emf.setJpaVendorAdapter(this.jpaVendorAdapter());
        emf.setPackagesToScan(packagesToScan);
        emf.setJpaProperties(this.hibernateProperties());
        return emf;
    }

    @Bean
    public JpaDialect jpaDialect() {
        return new HibernateJpaDialect();
    }

    @Bean
    public JpaTransactionManager transactionManager() {
        JpaTransactionManager transactionManager = new JpaTransactionManager();
        transactionManager.setEntityManagerFactory(entityManagerFactory()
                .getObject());
        transactionManager.setJpaDialect(jpaDialect());
        return transactionManager;
    }

    @Bean
    public Properties hibernateProperties() {
        Properties hibernateProps = new Properties();
        hibernateProps.setProperty("hibernate.hbm2ddl.auto", "create");
        return hibernateProps;
    }

    @Bean
    public PersistenceExceptionTranslationPostProcessor exceptionTranslationPostProcessor() {
        return new PersistenceExceptionTranslationPostProcessor();
    }
}

私のエンティティ定義は次のとおりです


@Entity
public class Item implements Serializable {

private static final long serialVersionUID = 7751126479626962944L;
private Long id;
private String name;

@Id
@GeneratedValue(strategy = GenerationType.AUTO)
public Long getId() {
    return id;
}

public void setId(Long id) {
    this.id = id;
}

public String getName() {
    return name;
}

public void setName(String name) {
    this.name = name;
}

@Override
public String toString() {
    return new String("Id: " + getId() + "\nName: " + getName());
}

}

私のリポジトリの定義は次のとおりです


@Repository
public interface ItemRepository extends JpaRepository {
}

次のようにサンプルアプリケーションを実行しようとすると

public class ServerApp {

@Inject
ItemRepository itemRepository;

public static void main(String[] args) {
    ApplicationContext context = new AnnotationConfigApplicationContext(
            JpaContext.class);
    new ServerApp().sampleMethod();
    System.out.println(context);
}

public void sampleMethod() {
    Item item = new Item();
    item.setName("Test Item");
    item = itemRepository.save(item);
    System.out.println(itemRepository.findOne(item.getId()));
    System.out.println("From sampleMethod");
}

}

コンソールに次の出力が表示されます。


SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
Apr 29, 2013 5:31:24 PM org.hibernate.annotations.common.Version 
INFO: HCANN000001: Hibernate Commons Annotations {4.0.1.Final}
Apr 29, 2013 5:31:24 PM org.hibernate.Version logVersion
INFO: HHH000412: Hibernate Core {4.1.9.Final}
Apr 29, 2013 5:31:24 PM org.hibernate.cfg.Environment 
INFO: HHH000206: hibernate.properties not found
Apr 29, 2013 5:31:24 PM org.hibernate.cfg.Environment buildBytecodeProvider
INFO: HHH000021: Bytecode provider name : javassist
Apr 29, 2013 5:31:24 PM org.hibernate.ejb.Ejb3Configuration configure
INFO: HHH000204: Processing PersistenceUnitInfo [
    name: default
    ...]
Apr 29, 2013 5:31:24 PM org.hibernate.service.jdbc.connections.internal.ConnectionProviderInitiator instantiateExplicitConnectionProvider
INFO: HHH000130: Instantiating explicit connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider
Apr 29, 2013 5:31:25 PM org.hibernate.dialect.Dialect 
INFO: HHH000400: Using dialect: org.hibernate.dialect.MySQL5Dialect
Apr 29, 2013 5:31:25 PM org.hibernate.engine.transaction.internal.TransactionFactoryInitiator initiateService
INFO: HHH000268: Transaction strategy: org.hibernate.engine.transaction.internal.jdbc.JdbcTransactionFactory
Apr 29, 2013 5:31:25 PM org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory 
INFO: HHH000397: Using ASTQueryTranslatorFactory
Apr 29, 2013 5:31:25 PM org.hibernate.validator.internal.util.Version 
INFO: HV000001: Hibernate Validator 4.3.1.Final
Apr 29, 2013 5:31:25 PM org.hibernate.tool.hbm2ddl.SchemaExport execute
INFO: HHH000227: Running hbm2ddl schema export
Hibernate: drop table if exists Item
Hibernate: create table Item (id bigint not null auto_increment, name varchar(255), primary key (id))
Apr 29, 2013 5:31:25 PM org.hibernate.tool.hbm2ddl.SchemaExport execute
INFO: HHH000230: Schema export complete
Exception in thread "main" java.lang.NullPointerException
    at devopsdistilled.operp.server.ServerApp.sampleMethod(ServerApp.java:27)
    at devopsdistilled.operp.server.ServerApp.main(ServerApp.java:20)

出力に見られるように、 is がNullPointerExceptionあり、したがってItemRepositoryis not がありAutowiredます。

次のように、リポジトリのテストを作成しました。


@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = JpaContext.class)
@Transactional
public class ItemRepositoryTest {

@Inject
private ItemRepository itemRepository;
private Item item;

@Before
public void setUp() throws Exception {
    item = new Item();
    item.setName("Test Item");
}

@Test
public void testSave() {
    item = itemRepository.save(item);
    Assert.assertEquals(item, itemRepository.findOne(item.getId()));
}

}

構成に何が欠けていますか?

どうすればこの問題を解決できますか?

ありがとう

4

2 に答える 2

3

問題は次の行だと思います:

new ServerApp().sampleMethod();

メインから呼び出す場合でも、自動配線に依存できますがApplicationContext、Bean を取得するには を使用する必要があります。

このような:

ServerApp app = context.getBean("ServerApp");  

この関数はオーバーロードされていることに注意することが重要です。

キーワードを使用すると、 newSpring をバイパスし、純粋な Java インスタンス化を利用します。

于 2013-04-29T11:54:11.850 に答える
3

ドキュメントで JpaRepository ジェネリックを explaneid として使用してリポジトリを宣言しようとしましたか?

@Repository
public interface ItemRepository extends JpaRepository<Item, Long> {
}

私の場合、エンティティの ID とタイプを指定しないと機能しません。お役に立てれば。

さらに、テストでリポジトリを手動で初期化する場合は、次のように使用します。

    @Before
    public void init() {
        JpaRepositoryFactory jpaRepositoryFactory = new JpaRepositoryFactory(entityManager);

        yourRepository = jpaRepositoryFactory.getRepository(YourRepository.class);
        assertNotNull(yourRepository);

        // In case your need to initialize a custom repository use this
        OtherRepositoryCustom otherRepoImpl = new OtherRepositoryImpl();
        otherRepository = jpaRepositoryFactory.getRepository(OtherRepository.class, otherRepoImpl);
        assertNotNull(otherRepository);
    }
于 2013-04-29T13:39:51.803 に答える