我遇到了这个无法解决的问题。
从我的@Controller
,我可以轻松访问我的自动@Service
课程,并且可以轻松使用它。
但是当我从一个没有注释的单独类中这样做时,它会给我一个NullPointerException
。
我的控制器(工作) -
@Controller
public class UserController {
@Autowired
UserService userService;...
我的单独Java类(不工作) -
public final class UsersManagementUtil {
@Autowired
UserService userService;
或
@Autowired
UserDao userDao;
userService或userDao始终为null! 只是尝试其中任何一个都有效。
我的组件扫描设置具有用于扫描的根级别包,因此应该没问题。
我的servlet上下文 -
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">
<!-- the application context definition for the
springapp DispatcherServlet -->
<!-- Enable annotation driven controllers, validation etc... -->
<context:property-placeholder location="classpath:jdbc.properties" />
<context:component-scan base-package="x" />
<tx:annotation-driven transaction-manager="hibernateTransactionManager" />
<!-- package shortended -->
<bean id="messageSource"
class="o.s.c.s.ReloadableResourceBundleMessageSource">
<property name="basename" value="/WEB-INF/messages" />
</bean>
<bean id="dataSource"
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="${database.driver}" />
<property name="url" value="${database.url}" />
<property name="username" value="${database.user}" />
<property name="password" value="${database.password}" />
</bean>
<!-- package shortened -->
<bean id="viewResolver"
class="o.s.w.s.v.InternalResourceViewResolver">
<property name="prefix">
<value>/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
<property name="order">
<value>0</value>
</property>
</bean>
<!-- package shortened -->
<bean id="sessionFactory"
class="o.s.o.h3.a.AnnotationSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="annotatedClasses">
<list>
<value>orion.core.models.Question</value>
<value>orion.core.models.User</value>
<value>orion.core.models.Space</value>
<value>orion.core.models.UserSkill</value>
<value>orion.core.models.Question</value>
<value>orion.core.models.Rating</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">${hibernate.dialect}</prop>
<prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
<prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop>
</props>
</property>
</bean>
<bean id="hibernateTransactionManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
有任何线索吗?
答案 0 :(得分:6)
默认情况下,使用注释的类
@Component
,@Repository
,@Service
,@Controller
或自定义注释 这本身就是注释的@Component
是唯一检测到的 候选组件。
UsersManagementUtil
应根据您的需要使用其中一个进行注释。
答案 1 :(得分:4)
Spring依赖注入仅适用于Spring管理的组件。如果您的UsersManagementUtil
不是由Spring管理的(即不是Spring bean),@Autowired
在其中不起作用。将其声明为Spring bean(使用<bean>
或注释),或者在使用
applicationContext.getAutowireCapableBeanFactory().autowireBean(object);