0

所以我在测试 Spring JPA 时遇到了这个问题,这是我的代码:

ArticleService

@Service("articleService")
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public class ArticleServiceImpl implements ArticleService {


private ArticleDao articleDao;

  @Autowired
  public ArticleServiceImpl(ArticleDao articleDao) {
    this.articleDao = articleDao;
  }

  public ArticleServiceImpl() {
  }

  @Transactional(propagation = Propagation.REQUIRED, readOnly = false)
  public void addArticle(Article article) {
    articleDao.saveArticle(article);
  }
}

我的ArticleDao

@Repository("articleDao")
public class ArticleDaoImpl implements ArticleDao {

  private EntityManager em;

  @PersistenceContext
  public void setEntityManager(EntityManager em) {
    this.em = em;
  }

  // To Save the article detail
  public void saveArticle(Article article) {
    article.setAddedDate(new Date());
    em.persist(article);
  }
}

问题在于在InputDatabaseServiceImpl类中执行这些方法。

public class InputDatabaseServiceImpl implements InputDatabaseService {

public ArticleService articleService;


public InputDatabaseServiceImpl(ArticleService articleService){
    this.articleService= articleService;
}

public int inputArticle(Article article) {
    articleService.saveArticle(article);
    return 0;
}

应用appContext.xml

<context:property-placeholder location="/WEB-INF/database.properties" />

<tx:annotation-driven transaction-manager="transactionManager" /> 

<!-- Declare a datasource that has pooling capabilities--> 
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"
destroy-method="close"
p:driverClass="${database.driver}"
p:jdbcUrl="${database.url}"
p:user="${database.user}"
p:password="${database.password}"
p:acquireIncrement="5"
p:idleConnectionTestPeriod="60"
p:maxPoolSize="100"
p:maxStatements="50"
p:minPoolSize="10" />

<!-- Declare a JPA entityManagerFactory-->
<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean" >
<property name="persistenceXmlLocation" value="classpath*:META-INF/persistence.xml"></property>
<property name="persistenceUnitName" value="hibernatePersistenceUnit" />
<property name="dataSource" ref="dataSource"/>
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter" >
<property name="showSql" value="true"/>
</bean>
</property>
</bean>

<!-- Declare a transaction manager-->
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory" />
</bean> 
</beans>

每当我打电话给我的inputArticle班级时,我endpoint都会NullPointerExpcetion排队articleService.saveArticle(article);

我知道这是最容易解决的异常,但我一直在为此苦苦挣扎,我需要帮助。任何人都可以给我一个提示,我错过了什么?

4

3 回答 3

1

发生的情况是 ArticleService 属性未初始化。

这可能是由于 InputDatabaseServiceImpl bean 配置不匹配,或者注入依赖项的注释不匹配(如果您的 bean 是自动装配的)。

试试这个:

public class InputDatabaseServiceImpl implements InputDatabaseService {


   @Autowired
   public ArticleService articleService;

   public InputDatabaseServiceImpl(){
      //no need of arguments constructor
   }

   public int inputArticle(Article article) {
      articleService.saveArticle(article);
      return 0;
   }

}

要自动装配 bean,此 bean 必须提供一个公共默认构造函数,而您的 ArticleServiceImpl 类没有该构造函数。一种修复形式是重构 ArticleServiceImpl:

@Service("articleService")
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public class ArticleServiceImpl implements ArticleService {

  @Autowired
  private ArticleDao articleDao;


  public ArticleServiceImpl() {
     //default constructor required for @Autowired
  }

  public ArticleServiceImpl() {
  }

  @Transactional(propagation = Propagation.REQUIRED, readOnly = false)
  public void addArticle(Article article) {
    articleDao.saveArticle(article);
  }
}
于 2012-12-05T12:33:03.233 回答
1

问题是它articleService为空且未初始化

如果 spring 正在管理 InputDatabaseServiceImpl 对象,您应该articleService使用Auto Wire@Autowired

否则,您必须请求 spring 使用 ClassPathXMLApplicationContext.getBean 初始化 articleService

于 2012-12-05T12:34:26.227 回答
0

正如其他人的回答所说,你articleService是空的,因为没有被注入。在您的 appContext.xml 中,您应该包括:

<!-- Bean creation -->
<context:component-scan base-package="com.mypackage"/>
<!-- Also, you can create your beans one by one -->
<!-- <bean class="com.mypackage.MyBean" /> -->

<!-- Enables autowired annotations -->
<context:annotation-config/>
于 2012-12-10T09:07:13.380 回答