java - 使用 Spring MVC 的未定义 bean

标签 java spring-mvc nullpointerexception

我无法理解 Spring MVC。 我有以下 web.xml :

<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
    version="3.0">

    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/config/root-context.xml</param-value>
    </context-param>

    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

    <servlet>
        <servlet-name>RESTServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>/WEB-INF/config/servlet-context.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
        <async-supported>true</async-supported>
    </servlet>
    <servlet-mapping>
        <servlet-name>RESTServlet</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
</web-app>

在 root-context.xml 文件中,我声明了各种 bean,一些带有 xml,另一些带有注释:

<?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"
    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">

    <!-- Root Context: defines shared resources visible to all other web components -->

    <context:component-scan base-package="com.dynamease.**" />
    <context:annotation-config />

    <!-- Configures External Property Resolution -->
    <import resource="properties.xml" />

    <!-- Configures Shared Data Access Resources -->
    <import resource="data.xml" />

    <bean id="contextSource" class="org.springframework.ldap.core.support.LdapContextSource">
        <property name="url" value="ldap://192.168.1.10:10389" />
        <property name="base" value="dc=dynamease,dc=net" />
        <property name="userDn" value="uid=admin,ou=system" />
        <property name="password" value="secret" />
    </bean>
    <bean id="ldapTemplate" class="org.springframework.ldap.core.LdapTemplate">
        <constructor-arg ref="contextSource" />
    </bean>
</beans>

在 servlet-context.xml 中,我定义了与 web 逻辑相关的 beans:

<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:beans="http://www.springframework.org/schema/beans"
    xsi:schemaLocation="
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
        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">

    <!-- DispatcherServlet Context: defines this servlet's request-processing 
        infrastructure -->

    <!-- Enables the Spring MVC @Controller programming model -->
    <annotation-driven />

    <interceptors>
        <beans:bean
            class="com.dynamease.entity.springsocialentities.UserInterceptor">
            <beans:constructor-arg ref="usersConnectionRepository" />
        </beans:bean>
    </interceptors>

    <!-- Handles HTTP GET requests for /resources/** by efficiently serving 
        up static resources in the ${webappRoot}/resources directory -->
    <resources mapping="/resources/**" location="/resources/" />

    <!-- Resolves views selected for rendering by @Controllers to .jsp resources 
        in the /WEB-INF/views directory -->
    <beans:bean
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <beans:property name="prefix" value="/WEB-INF/views/" />
        <beans:property name="suffix" value=".jsp" />
    </beans:bean>

    <!-- Imports user-defined @Controller beans that process client requests -->
    <bean class="com.dynamease.web.rest.HomeController">
        <constructor-arg ref="facebook" />
    </bean>

    <!-- Allows users to sign-in with their provider accounts.  -->
    <bean class="org.springframework.social.connect.web.ProviderSignInController">
        <constructor-arg ref="connectionFactoryLocator" />
        <constructor-arg ref="usersConnectionRepository" />     
        <constructor-arg>
            <bean class="com.dynamease.entity.springsocialentities.SimpleSignInAdapter" />
        </constructor-arg>
    </bean>

    <mvc:view-controller path="/signin" />

    <mvc:view-controller path="/signout" />
</beans:beans>

问题是 root-context.xml 中定义的 bean 没有被初始化(我在尝试访问它们时遇到 Null pointer Exception)。 例如,在 HomeController bean 中:

@Autowired
    private DynDirectoryServiceImpl dynDirectoryService;

    @RequestMapping(value = "/", method = RequestMethod.GET)
    public String home(Model model) {
        System.out.println("<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<");
        System.out.println(this.getClass().toString());
        System.out.println(dynDirectoryService.toString()); 
}

最后一行失败了。

这是 DynDirectoryServiceImpl 代码:

    @Component
    public class DynDirectoryServiceImpl implements DynDirectoryServiceInterface {

        @Autowired
        private LdapTemplate ldapTemplate;

        @Autowired
        private OdmManager odmManager;

        @Override
        public boolean verify(DynContact dynContact) {
            // TODO Auto-generated method stub
            return false;
        }
}

最佳答案

尝试更改 Autowiring 属性的类型:

@Autowired
private DynDirectoryServiceInterface

你还错过了

<context:annotation-config />

MVC 配置中的元素。

关于java - 使用 Spring MVC 的未定义 bean,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17089613/

相关文章:

java - 添加到自定义链表会导致 NullPointerException

java - Hibernate中如何连接多个表?

具有无限系列的 Java Stream-API 性能

java - 递归定义中的堆栈溢出错误

java - Spring Security 方法级安全性与 Java 配置 + REST 身份验证?

java - 即使对于 uri 和 cookie 的非空值,CookieStore.add 也会返回 NPE?

java - 可以告诉 'groovyc' 只生成 stub 吗? (Java+Groovy+Kotlin联合编译)

spring-mvc - 为 Web 应用程序创建 WAP 接口(interface)

sockets - ClientAbortException : java.net.SocketException:软件导致连接中止:套接字写入错误

java - 什么是 NullPointerException,我该如何解决?