簡體   English   中英

在@Service注釋的類中使用@Value注入時獲取空值,但能夠在@Controller注釋的類中獲取值

[英]getting null value when using @Value injection in class annotated by @Service but able to get values in class annotated by @Controller

當嘗試在@Service類注釋的類中使用@Value注入來注入空值時,我得到了空值,但是我可以在使用Spring 4.2 vesion的@Service注解的類中獲取相同屬性的值

web.xml如下:::

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://xmlns.jcp.org/xml/ns/javaee"
    xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
    id="WebApp_ID" version="3.1">
    <display-name></display-name>



<servlet>
    <servlet-name>CaptchaServlet</servlet-name>
    <servlet-class>com.cdac.sikkimSprings.servlets.CaptchaServlet</servlet-class>
</servlet>
<servlet-mapping>
    <servlet-name>CaptchaServlet</servlet-name>
    <url-pattern>/captcha.jpg</url-pattern>
</servlet-mapping>

<servlet>
    <servlet-name>SpringController</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring-mvc.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>SpringController</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>
<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>
        /WEB-INF/beans.xml
        /WEB-INF/spring-security.xml
    </param-value>
</context-param>
<filter>
    <filter-name>springSecurityFilterChain</filter-name>
    <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
    <filter-name>springSecurityFilterChain</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

</web-app>

springMVC.xml如下

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

    <context:component-scan base-package="com.basePackage" />
    <mvc:annotation-driven />

    <mvc:resources mapping="/resources/**" location="/resources/" />
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/views/" />
        <property name="suffix" value=".jsp" />
    </bean>
    <context:property-placeholder location="classpath:properties/development.properties" order="1"/>

    <bean id="multipartResolver"   
        class="org.springframework.web.multipart.commons.CommonsMultipartResolver"/>

</beans>        

我也有bean.xml用於bean定義如下

<?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-4.0.xsd
          http://www.springframework.org/schema/context
          http://www.springframework.org/schema/context/spring-context-4.0.xsd">

    <!-- <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> 
        <property name="driverClassName" value="com.mysql.jdbc.Driver" /> <property 
        name="url" value="jdbc:mysql://localhost:3306/test" /> <property name="username" 
        value="root" /> <property name="password" value="password" /> </bean> -->

//下面提到的Bean定義是同一個類,其中我需要注入由@Service注釋注釋的屬性值

    <bean id="userManagement"
            class="com.basepackage.userManagement">

    </bean>



</beans>

下面是實際的Java類,需要在其中注入值

@Service("userManagementService")
@Transactional
public class userManagement implements RetrieveUserListService{

    //This value is not getting injected
    @Value("${registrationstatus_registered}")
    String statusRegistered;


    @Value("${registrationstatus_pending}")
    String statusPending;


    @Override
    public List<ShowUserListPOJO> RetrieveUserList(HttpServletRequest request, HttpServletResponse response) {
        // TODO Auto-generated method stub

        //here the required value is null
        System.out.println(statusRegistered);



        return null;
    }
    //Code bellow is skipped...

我在下面的課堂上注入的相同值在這里它們被正確注入

@Controller
public class UserManagement {

    @Value( "${registrationstatus_registered}" )
    String registrationstatus;



    @RequestMapping(value="/userManagement", method = RequestMethod.GET)
    public void userManagement(HttpServletRequest request,HttpServletResponse response) {

        //here value is prnted properly
        System.out.println(registrationstatus);


       //......Code below skipped
}

development.properties如下

registrationstatus_registered = registered
registrationstatus_pending = pending

在您的應用程序中,您有兩個Spring上下文:根應用程序上下文( ContextLoaderListener )和Web應用程序上下文( DispatcherServlet )。 您需要了解它們之間的區別。 在這里閱讀。 如果將屬性資源定義移至beans.xml(用於根上下文),則屬性值將正確地注入整個應用程序。

將此bean定義移動到beans.xml <context:property-placeholder location="classpath:properties/development.properties" order="1"/>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM