Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/347.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java Spring@Value注释未解析_Java_Spring_Spring Annotations - Fatal编程技术网

Java Spring@Value注释未解析

Java Spring@Value注释未解析,java,spring,spring-annotations,Java,Spring,Spring Annotations,我意识到这个问题已经被问过无数次了,但似乎没有一个解决方案适合我的情况 我有一个基本的SpringWS应用程序,我正在与一个servlet上下文一起组装。我可以看到@Component注释类和属性文件都在启动时被提取,如下面的日志所示。但是,我的@Value注释字符串返回为null 有人认为我的设置方式有什么问题吗?请随时询问我可能遗漏的任何其他信息。 展望未来,我可以使用哪些最佳方法来调查我将来遇到的此类问题? directmail管理器servlet.xml: <?xml versio

我意识到这个问题已经被问过无数次了,但似乎没有一个解决方案适合我的情况

我有一个基本的SpringWS应用程序,我正在与一个servlet上下文一起组装。我可以看到@Component注释类和属性文件都在启动时被提取,如下面的日志所示。但是,我的@Value注释字符串返回为null

  • 有人认为我的设置方式有什么问题吗?请随时询问我可能遗漏的任何其他信息。
  • 展望未来,我可以使用哪些最佳方法来调查我将来遇到的此类问题?
  • directmail管理器servlet.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"
      xmlns:sws="http://www.springframework.org/schema/web-services"
      xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
      http://www.springframework.org/schema/web-services http://www.springframework.org/schema/web-services/web-services-2.0.xsd
      http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
    
        <context:component-scan base-package="com.xxx.direct.mailserver"/>
        <context:property-placeholder location="classpath:manager.properties"/>
    
        <sws:annotation-driven/>
    
        <sws:dynamic-wsdl id="manager" portTypeName="EcwDirect"
            locationUri="/mailerManagerService/" targetNamespace="http://obfuscated.com/direct/definitions">
            <sws:xsd location="/WEB-INF/mailManagerRequest.xsd" />
        </sws:dynamic-wsdl>
    
    </beans>
    
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app 
        version="3.0" 
        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">
    
        <display-name>xxxxxxxxx</display-name>
    
        <servlet>
            <servlet-name>directmail-manager</servlet-name>
            <servlet-class>org.springframework.ws.transport.http.MessageDispatcherServlet</servlet-class>
            <init-param>
                <param-name>transformWsdlLocations</param-name>
                <param-value>true</param-value>
            </init-param>
        </servlet>
    
        <servlet-mapping>
            <servlet-name>directmail-manager</servlet-name>
            <url-pattern>/*</url-pattern>
        </servlet-mapping>
    
    </web-app>
    
    mailserver.url="localhost"
    
    package com.xxx.direct.mailserver;
    
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.beans.factory.annotation.Value;
    import org.springframework.stereotype.Component;
    
    @Component
    public class TelnetMailServerUserController implements MailServerUserController {
    
        @Autowired
        @Value("${mailserver.url}")
        String mailserverUrl;
    
        @Override
        public void addUser(String username, String password) {
    
            System.out.println("server URL:" + mailserverUrl);
        }
    }
    
    @Service
    public class MailManagerService {
    
        //TODO: craft and return response
        public void registerNewUser(List<Element> usersToAdd) {
    
            MailServerUserController userController = new TelnetMailServerUserController();
    
            //TODO: add users fo realz
            for(Element user : usersToAdd) {
    
                String emailAddress = user.getChildText("emailAddress", MailManagerEndpoint.NAMESPACE);
                String password = user.getChildText("password", MailManagerEndpoint.NAMESPACE);
    
                //TODO: log this:
                System.out.println("user " + emailAddress + " added");
    
                userController.addUser(emailAddress, password);
    
                //TODO: add to database
            }
        }
    }
    
    Apr 23, 2014 11:54:41 AM com.springsource.tcserver.security.PropertyDecoder <init>
    INFO: tc Runtime property decoder using memory-based key
    Apr 23, 2014 11:54:42 AM com.springsource.tcserver.security.PropertyDecoder <init>
    INFO: tcServer Runtime property decoder has been initialized in 261 ms
    Apr 23, 2014 11:54:42 AM org.apache.coyote.AbstractProtocol init
    INFO: Initializing ProtocolHandler ["http-bio-8080"]
    Apr 23, 2014 11:54:42 AM com.springsource.tcserver.serviceability.rmi.JmxSocketListener init
    INFO: Started up JMX registry on 127.0.0.1:6969 in 128 ms
    Apr 23, 2014 11:54:42 AM org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 959 ms
    Apr 23, 2014 11:54:42 AM org.apache.catalina.core.StandardService startInternal
    INFO: Starting service Catalina
    Apr 23, 2014 11:54:42 AM org.apache.catalina.core.StandardEngine startInternal
    INFO: Starting Servlet Engine: VMware vFabric tc Runtime 2.9.3.RELEASE/7.0.42.A.RELEASE
    Apr 23, 2014 11:54:42 AM org.apache.catalina.startup.HostConfig deployDescriptor
    INFO: Deploying configuration descriptor C:\springsource\vfabric-tc-server-developer-2.9.3.RELEASE\base-instance\conf\Catalina\localhost\ROOT.xml
    Apr 23, 2014 11:54:42 AM org.apache.catalina.startup.SetContextPropertiesRule begin
    WARNING: [SetContextPropertiesRule]{Context} Setting property 'source' to 'org.eclipse.jst.jee.server:mail-server-manager' did not find a matching property.
    Apr 23, 2014 11:54:44 AM org.apache.catalina.core.ApplicationContext log
    INFO: No Spring WebApplicationInitializer types detected on classpath
    Apr 23, 2014 11:54:44 AM org.apache.catalina.startup.HostConfig deployDirectory
    INFO: Deploying web application directory C:\springsource\vfabric-tc-server-developer-2.9.3.RELEASE\base-instance\webapps\manager
    Apr 23, 2014 11:54:44 AM org.apache.coyote.AbstractProtocol start
    INFO: Starting ProtocolHandler ["http-bio-8080"]
    Apr 23, 2014 11:54:44 AM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 1319 ms
    Apr 23, 2014 11:54:44 AM org.apache.catalina.core.ApplicationContext log
    INFO: Initializing Spring FrameworkServlet 'directmail-manager'
    Apr 23, 2014 11:54:44 AM org.springframework.web.servlet.FrameworkServlet initServletBean
    INFO: FrameworkServlet 'directmail-manager': initialization started
    Apr 23, 2014 11:54:44 AM org.springframework.context.support.AbstractApplicationContext prepareRefresh
    INFO: Refreshing WebApplicationContext for namespace 'directmail-manager-servlet': startup date [Wed Apr 23 11:54:44 EDT 2014]; root of context hierarchy
    Apr 23, 2014 11:54:44 AM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
    INFO: Loading XML bean definitions from ServletContext resource [/WEB-INF/directmail-manager-servlet.xml]
    Apr 23, 2014 11:54:44 AM org.springframework.core.io.support.PropertiesLoaderSupport loadProperties
    INFO: Loading properties file from class path resource [manager.properties]
    Apr 23, 2014 11:54:45 AM org.springframework.ws.soap.addressing.server.AbstractAddressingEndpointMapping afterPropertiesSet
    INFO: Supporting [WS-Addressing August 2004, WS-Addressing 1.0]
    Apr 23, 2014 11:54:45 AM org.springframework.beans.factory.support.DefaultListableBeanFactory preInstantiateSingletons
    INFO: Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@7c0f6d9: defining beans [mailManagerEndpoint,mailManagerService,telnetMailServerUserController,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.beans.factory.config.PropertyPlaceholderConfigurer#0,org.springframework.ws.server.endpoint.mapping.PayloadRootAnnotationMethodEndpointMapping#0,org.springframework.ws.soap.server.endpoint.mapping.SoapActionAnnotationMethodEndpointMapping#0,org.springframework.ws.soap.addressing.server.AnnotationActionEndpointMapping#0,org.springframework.ws.server.endpoint.adapter.method.dom.DomPayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.method.SourcePayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.method.jaxb.XmlRootElementPayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.method.jaxb.JaxbElementPayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.method.dom.JDomPayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.DefaultMethodEndpointAdapter#0,org.springframework.ws.soap.server.endpoint.SoapFaultAnnotationExceptionResolver#0,org.springframework.ws.soap.server.endpoint.SimpleSoapExceptionResolver#0,org.springframework.xml.xsd.SimpleXsdSchema#0,manager,org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor]; root of factory hierarchy
    Apr 23, 2014 11:54:45 AM org.springframework.ws.soap.saaj.SaajSoapMessageFactory afterPropertiesSet
    INFO: Creating SAAJ 1.3 MessageFactory with SOAP 1.1 Protocol
    Apr 23, 2014 11:54:45 AM org.springframework.web.servlet.FrameworkServlet initServletBean
    INFO: FrameworkServlet 'directmail-manager': initialization completed in 1012 ms
    user test added
    server URL:null
    
    我的注释类:

    <?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:sws="http://www.springframework.org/schema/web-services"
      xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
      http://www.springframework.org/schema/web-services http://www.springframework.org/schema/web-services/web-services-2.0.xsd
      http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
    
        <context:component-scan base-package="com.xxx.direct.mailserver"/>
        <context:property-placeholder location="classpath:manager.properties"/>
    
        <sws:annotation-driven/>
    
        <sws:dynamic-wsdl id="manager" portTypeName="EcwDirect"
            locationUri="/mailerManagerService/" targetNamespace="http://obfuscated.com/direct/definitions">
            <sws:xsd location="/WEB-INF/mailManagerRequest.xsd" />
        </sws:dynamic-wsdl>
    
    </beans>
    
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app 
        version="3.0" 
        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">
    
        <display-name>xxxxxxxxx</display-name>
    
        <servlet>
            <servlet-name>directmail-manager</servlet-name>
            <servlet-class>org.springframework.ws.transport.http.MessageDispatcherServlet</servlet-class>
            <init-param>
                <param-name>transformWsdlLocations</param-name>
                <param-value>true</param-value>
            </init-param>
        </servlet>
    
        <servlet-mapping>
            <servlet-name>directmail-manager</servlet-name>
            <url-pattern>/*</url-pattern>
        </servlet-mapping>
    
    </web-app>
    
    mailserver.url="localhost"
    
    package com.xxx.direct.mailserver;
    
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.beans.factory.annotation.Value;
    import org.springframework.stereotype.Component;
    
    @Component
    public class TelnetMailServerUserController implements MailServerUserController {
    
        @Autowired
        @Value("${mailserver.url}")
        String mailserverUrl;
    
        @Override
        public void addUser(String username, String password) {
    
            System.out.println("server URL:" + mailserverUrl);
        }
    }
    
    @Service
    public class MailManagerService {
    
        //TODO: craft and return response
        public void registerNewUser(List<Element> usersToAdd) {
    
            MailServerUserController userController = new TelnetMailServerUserController();
    
            //TODO: add users fo realz
            for(Element user : usersToAdd) {
    
                String emailAddress = user.getChildText("emailAddress", MailManagerEndpoint.NAMESPACE);
                String password = user.getChildText("password", MailManagerEndpoint.NAMESPACE);
    
                //TODO: log this:
                System.out.println("user " + emailAddress + " added");
    
                userController.addUser(emailAddress, password);
    
                //TODO: add to database
            }
        }
    }
    
    Apr 23, 2014 11:54:41 AM com.springsource.tcserver.security.PropertyDecoder <init>
    INFO: tc Runtime property decoder using memory-based key
    Apr 23, 2014 11:54:42 AM com.springsource.tcserver.security.PropertyDecoder <init>
    INFO: tcServer Runtime property decoder has been initialized in 261 ms
    Apr 23, 2014 11:54:42 AM org.apache.coyote.AbstractProtocol init
    INFO: Initializing ProtocolHandler ["http-bio-8080"]
    Apr 23, 2014 11:54:42 AM com.springsource.tcserver.serviceability.rmi.JmxSocketListener init
    INFO: Started up JMX registry on 127.0.0.1:6969 in 128 ms
    Apr 23, 2014 11:54:42 AM org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 959 ms
    Apr 23, 2014 11:54:42 AM org.apache.catalina.core.StandardService startInternal
    INFO: Starting service Catalina
    Apr 23, 2014 11:54:42 AM org.apache.catalina.core.StandardEngine startInternal
    INFO: Starting Servlet Engine: VMware vFabric tc Runtime 2.9.3.RELEASE/7.0.42.A.RELEASE
    Apr 23, 2014 11:54:42 AM org.apache.catalina.startup.HostConfig deployDescriptor
    INFO: Deploying configuration descriptor C:\springsource\vfabric-tc-server-developer-2.9.3.RELEASE\base-instance\conf\Catalina\localhost\ROOT.xml
    Apr 23, 2014 11:54:42 AM org.apache.catalina.startup.SetContextPropertiesRule begin
    WARNING: [SetContextPropertiesRule]{Context} Setting property 'source' to 'org.eclipse.jst.jee.server:mail-server-manager' did not find a matching property.
    Apr 23, 2014 11:54:44 AM org.apache.catalina.core.ApplicationContext log
    INFO: No Spring WebApplicationInitializer types detected on classpath
    Apr 23, 2014 11:54:44 AM org.apache.catalina.startup.HostConfig deployDirectory
    INFO: Deploying web application directory C:\springsource\vfabric-tc-server-developer-2.9.3.RELEASE\base-instance\webapps\manager
    Apr 23, 2014 11:54:44 AM org.apache.coyote.AbstractProtocol start
    INFO: Starting ProtocolHandler ["http-bio-8080"]
    Apr 23, 2014 11:54:44 AM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 1319 ms
    Apr 23, 2014 11:54:44 AM org.apache.catalina.core.ApplicationContext log
    INFO: Initializing Spring FrameworkServlet 'directmail-manager'
    Apr 23, 2014 11:54:44 AM org.springframework.web.servlet.FrameworkServlet initServletBean
    INFO: FrameworkServlet 'directmail-manager': initialization started
    Apr 23, 2014 11:54:44 AM org.springframework.context.support.AbstractApplicationContext prepareRefresh
    INFO: Refreshing WebApplicationContext for namespace 'directmail-manager-servlet': startup date [Wed Apr 23 11:54:44 EDT 2014]; root of context hierarchy
    Apr 23, 2014 11:54:44 AM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
    INFO: Loading XML bean definitions from ServletContext resource [/WEB-INF/directmail-manager-servlet.xml]
    Apr 23, 2014 11:54:44 AM org.springframework.core.io.support.PropertiesLoaderSupport loadProperties
    INFO: Loading properties file from class path resource [manager.properties]
    Apr 23, 2014 11:54:45 AM org.springframework.ws.soap.addressing.server.AbstractAddressingEndpointMapping afterPropertiesSet
    INFO: Supporting [WS-Addressing August 2004, WS-Addressing 1.0]
    Apr 23, 2014 11:54:45 AM org.springframework.beans.factory.support.DefaultListableBeanFactory preInstantiateSingletons
    INFO: Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@7c0f6d9: defining beans [mailManagerEndpoint,mailManagerService,telnetMailServerUserController,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.beans.factory.config.PropertyPlaceholderConfigurer#0,org.springframework.ws.server.endpoint.mapping.PayloadRootAnnotationMethodEndpointMapping#0,org.springframework.ws.soap.server.endpoint.mapping.SoapActionAnnotationMethodEndpointMapping#0,org.springframework.ws.soap.addressing.server.AnnotationActionEndpointMapping#0,org.springframework.ws.server.endpoint.adapter.method.dom.DomPayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.method.SourcePayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.method.jaxb.XmlRootElementPayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.method.jaxb.JaxbElementPayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.method.dom.JDomPayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.DefaultMethodEndpointAdapter#0,org.springframework.ws.soap.server.endpoint.SoapFaultAnnotationExceptionResolver#0,org.springframework.ws.soap.server.endpoint.SimpleSoapExceptionResolver#0,org.springframework.xml.xsd.SimpleXsdSchema#0,manager,org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor]; root of factory hierarchy
    Apr 23, 2014 11:54:45 AM org.springframework.ws.soap.saaj.SaajSoapMessageFactory afterPropertiesSet
    INFO: Creating SAAJ 1.3 MessageFactory with SOAP 1.1 Protocol
    Apr 23, 2014 11:54:45 AM org.springframework.web.servlet.FrameworkServlet initServletBean
    INFO: FrameworkServlet 'directmail-manager': initialization completed in 1012 ms
    user test added
    server URL:null
    
    使用此类的类:

    <?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:sws="http://www.springframework.org/schema/web-services"
      xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
      http://www.springframework.org/schema/web-services http://www.springframework.org/schema/web-services/web-services-2.0.xsd
      http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
    
        <context:component-scan base-package="com.xxx.direct.mailserver"/>
        <context:property-placeholder location="classpath:manager.properties"/>
    
        <sws:annotation-driven/>
    
        <sws:dynamic-wsdl id="manager" portTypeName="EcwDirect"
            locationUri="/mailerManagerService/" targetNamespace="http://obfuscated.com/direct/definitions">
            <sws:xsd location="/WEB-INF/mailManagerRequest.xsd" />
        </sws:dynamic-wsdl>
    
    </beans>
    
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app 
        version="3.0" 
        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">
    
        <display-name>xxxxxxxxx</display-name>
    
        <servlet>
            <servlet-name>directmail-manager</servlet-name>
            <servlet-class>org.springframework.ws.transport.http.MessageDispatcherServlet</servlet-class>
            <init-param>
                <param-name>transformWsdlLocations</param-name>
                <param-value>true</param-value>
            </init-param>
        </servlet>
    
        <servlet-mapping>
            <servlet-name>directmail-manager</servlet-name>
            <url-pattern>/*</url-pattern>
        </servlet-mapping>
    
    </web-app>
    
    mailserver.url="localhost"
    
    package com.xxx.direct.mailserver;
    
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.beans.factory.annotation.Value;
    import org.springframework.stereotype.Component;
    
    @Component
    public class TelnetMailServerUserController implements MailServerUserController {
    
        @Autowired
        @Value("${mailserver.url}")
        String mailserverUrl;
    
        @Override
        public void addUser(String username, String password) {
    
            System.out.println("server URL:" + mailserverUrl);
        }
    }
    
    @Service
    public class MailManagerService {
    
        //TODO: craft and return response
        public void registerNewUser(List<Element> usersToAdd) {
    
            MailServerUserController userController = new TelnetMailServerUserController();
    
            //TODO: add users fo realz
            for(Element user : usersToAdd) {
    
                String emailAddress = user.getChildText("emailAddress", MailManagerEndpoint.NAMESPACE);
                String password = user.getChildText("password", MailManagerEndpoint.NAMESPACE);
    
                //TODO: log this:
                System.out.println("user " + emailAddress + " added");
    
                userController.addUser(emailAddress, password);
    
                //TODO: add to database
            }
        }
    }
    
    Apr 23, 2014 11:54:41 AM com.springsource.tcserver.security.PropertyDecoder <init>
    INFO: tc Runtime property decoder using memory-based key
    Apr 23, 2014 11:54:42 AM com.springsource.tcserver.security.PropertyDecoder <init>
    INFO: tcServer Runtime property decoder has been initialized in 261 ms
    Apr 23, 2014 11:54:42 AM org.apache.coyote.AbstractProtocol init
    INFO: Initializing ProtocolHandler ["http-bio-8080"]
    Apr 23, 2014 11:54:42 AM com.springsource.tcserver.serviceability.rmi.JmxSocketListener init
    INFO: Started up JMX registry on 127.0.0.1:6969 in 128 ms
    Apr 23, 2014 11:54:42 AM org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 959 ms
    Apr 23, 2014 11:54:42 AM org.apache.catalina.core.StandardService startInternal
    INFO: Starting service Catalina
    Apr 23, 2014 11:54:42 AM org.apache.catalina.core.StandardEngine startInternal
    INFO: Starting Servlet Engine: VMware vFabric tc Runtime 2.9.3.RELEASE/7.0.42.A.RELEASE
    Apr 23, 2014 11:54:42 AM org.apache.catalina.startup.HostConfig deployDescriptor
    INFO: Deploying configuration descriptor C:\springsource\vfabric-tc-server-developer-2.9.3.RELEASE\base-instance\conf\Catalina\localhost\ROOT.xml
    Apr 23, 2014 11:54:42 AM org.apache.catalina.startup.SetContextPropertiesRule begin
    WARNING: [SetContextPropertiesRule]{Context} Setting property 'source' to 'org.eclipse.jst.jee.server:mail-server-manager' did not find a matching property.
    Apr 23, 2014 11:54:44 AM org.apache.catalina.core.ApplicationContext log
    INFO: No Spring WebApplicationInitializer types detected on classpath
    Apr 23, 2014 11:54:44 AM org.apache.catalina.startup.HostConfig deployDirectory
    INFO: Deploying web application directory C:\springsource\vfabric-tc-server-developer-2.9.3.RELEASE\base-instance\webapps\manager
    Apr 23, 2014 11:54:44 AM org.apache.coyote.AbstractProtocol start
    INFO: Starting ProtocolHandler ["http-bio-8080"]
    Apr 23, 2014 11:54:44 AM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 1319 ms
    Apr 23, 2014 11:54:44 AM org.apache.catalina.core.ApplicationContext log
    INFO: Initializing Spring FrameworkServlet 'directmail-manager'
    Apr 23, 2014 11:54:44 AM org.springframework.web.servlet.FrameworkServlet initServletBean
    INFO: FrameworkServlet 'directmail-manager': initialization started
    Apr 23, 2014 11:54:44 AM org.springframework.context.support.AbstractApplicationContext prepareRefresh
    INFO: Refreshing WebApplicationContext for namespace 'directmail-manager-servlet': startup date [Wed Apr 23 11:54:44 EDT 2014]; root of context hierarchy
    Apr 23, 2014 11:54:44 AM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
    INFO: Loading XML bean definitions from ServletContext resource [/WEB-INF/directmail-manager-servlet.xml]
    Apr 23, 2014 11:54:44 AM org.springframework.core.io.support.PropertiesLoaderSupport loadProperties
    INFO: Loading properties file from class path resource [manager.properties]
    Apr 23, 2014 11:54:45 AM org.springframework.ws.soap.addressing.server.AbstractAddressingEndpointMapping afterPropertiesSet
    INFO: Supporting [WS-Addressing August 2004, WS-Addressing 1.0]
    Apr 23, 2014 11:54:45 AM org.springframework.beans.factory.support.DefaultListableBeanFactory preInstantiateSingletons
    INFO: Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@7c0f6d9: defining beans [mailManagerEndpoint,mailManagerService,telnetMailServerUserController,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.beans.factory.config.PropertyPlaceholderConfigurer#0,org.springframework.ws.server.endpoint.mapping.PayloadRootAnnotationMethodEndpointMapping#0,org.springframework.ws.soap.server.endpoint.mapping.SoapActionAnnotationMethodEndpointMapping#0,org.springframework.ws.soap.addressing.server.AnnotationActionEndpointMapping#0,org.springframework.ws.server.endpoint.adapter.method.dom.DomPayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.method.SourcePayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.method.jaxb.XmlRootElementPayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.method.jaxb.JaxbElementPayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.method.dom.JDomPayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.DefaultMethodEndpointAdapter#0,org.springframework.ws.soap.server.endpoint.SoapFaultAnnotationExceptionResolver#0,org.springframework.ws.soap.server.endpoint.SimpleSoapExceptionResolver#0,org.springframework.xml.xsd.SimpleXsdSchema#0,manager,org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor]; root of factory hierarchy
    Apr 23, 2014 11:54:45 AM org.springframework.ws.soap.saaj.SaajSoapMessageFactory afterPropertiesSet
    INFO: Creating SAAJ 1.3 MessageFactory with SOAP 1.1 Protocol
    Apr 23, 2014 11:54:45 AM org.springframework.web.servlet.FrameworkServlet initServletBean
    INFO: FrameworkServlet 'directmail-manager': initialization completed in 1012 ms
    user test added
    server URL:null
    
    @服务
    公共类邮件管理服务{
    //TODO:工艺和返回响应
    公共无效注册表用户(列表用户添加){
    MailServerUserController用户控制器=新的TelnetMailServerUserController();
    //TODO:为realz添加用户
    for(元素用户:usersToAdd){
    字符串emailAddress=user.getChildText(“emailAddress”,mailmanagerndpoint.NAMESPACE);
    字符串密码=user.getChildText(“密码”,mailmanagerndpoint.NAMESPACE);
    //TODO:记录以下内容:
    System.out.println(“用户”+电子邮件地址+“添加”);
    userController.addUser(电子邮件地址、密码);
    //TODO:添加到数据库
    }
    }
    }
    
    日志:

    <?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:sws="http://www.springframework.org/schema/web-services"
      xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
      http://www.springframework.org/schema/web-services http://www.springframework.org/schema/web-services/web-services-2.0.xsd
      http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
    
        <context:component-scan base-package="com.xxx.direct.mailserver"/>
        <context:property-placeholder location="classpath:manager.properties"/>
    
        <sws:annotation-driven/>
    
        <sws:dynamic-wsdl id="manager" portTypeName="EcwDirect"
            locationUri="/mailerManagerService/" targetNamespace="http://obfuscated.com/direct/definitions">
            <sws:xsd location="/WEB-INF/mailManagerRequest.xsd" />
        </sws:dynamic-wsdl>
    
    </beans>
    
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app 
        version="3.0" 
        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">
    
        <display-name>xxxxxxxxx</display-name>
    
        <servlet>
            <servlet-name>directmail-manager</servlet-name>
            <servlet-class>org.springframework.ws.transport.http.MessageDispatcherServlet</servlet-class>
            <init-param>
                <param-name>transformWsdlLocations</param-name>
                <param-value>true</param-value>
            </init-param>
        </servlet>
    
        <servlet-mapping>
            <servlet-name>directmail-manager</servlet-name>
            <url-pattern>/*</url-pattern>
        </servlet-mapping>
    
    </web-app>
    
    mailserver.url="localhost"
    
    package com.xxx.direct.mailserver;
    
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.beans.factory.annotation.Value;
    import org.springframework.stereotype.Component;
    
    @Component
    public class TelnetMailServerUserController implements MailServerUserController {
    
        @Autowired
        @Value("${mailserver.url}")
        String mailserverUrl;
    
        @Override
        public void addUser(String username, String password) {
    
            System.out.println("server URL:" + mailserverUrl);
        }
    }
    
    @Service
    public class MailManagerService {
    
        //TODO: craft and return response
        public void registerNewUser(List<Element> usersToAdd) {
    
            MailServerUserController userController = new TelnetMailServerUserController();
    
            //TODO: add users fo realz
            for(Element user : usersToAdd) {
    
                String emailAddress = user.getChildText("emailAddress", MailManagerEndpoint.NAMESPACE);
                String password = user.getChildText("password", MailManagerEndpoint.NAMESPACE);
    
                //TODO: log this:
                System.out.println("user " + emailAddress + " added");
    
                userController.addUser(emailAddress, password);
    
                //TODO: add to database
            }
        }
    }
    
    Apr 23, 2014 11:54:41 AM com.springsource.tcserver.security.PropertyDecoder <init>
    INFO: tc Runtime property decoder using memory-based key
    Apr 23, 2014 11:54:42 AM com.springsource.tcserver.security.PropertyDecoder <init>
    INFO: tcServer Runtime property decoder has been initialized in 261 ms
    Apr 23, 2014 11:54:42 AM org.apache.coyote.AbstractProtocol init
    INFO: Initializing ProtocolHandler ["http-bio-8080"]
    Apr 23, 2014 11:54:42 AM com.springsource.tcserver.serviceability.rmi.JmxSocketListener init
    INFO: Started up JMX registry on 127.0.0.1:6969 in 128 ms
    Apr 23, 2014 11:54:42 AM org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 959 ms
    Apr 23, 2014 11:54:42 AM org.apache.catalina.core.StandardService startInternal
    INFO: Starting service Catalina
    Apr 23, 2014 11:54:42 AM org.apache.catalina.core.StandardEngine startInternal
    INFO: Starting Servlet Engine: VMware vFabric tc Runtime 2.9.3.RELEASE/7.0.42.A.RELEASE
    Apr 23, 2014 11:54:42 AM org.apache.catalina.startup.HostConfig deployDescriptor
    INFO: Deploying configuration descriptor C:\springsource\vfabric-tc-server-developer-2.9.3.RELEASE\base-instance\conf\Catalina\localhost\ROOT.xml
    Apr 23, 2014 11:54:42 AM org.apache.catalina.startup.SetContextPropertiesRule begin
    WARNING: [SetContextPropertiesRule]{Context} Setting property 'source' to 'org.eclipse.jst.jee.server:mail-server-manager' did not find a matching property.
    Apr 23, 2014 11:54:44 AM org.apache.catalina.core.ApplicationContext log
    INFO: No Spring WebApplicationInitializer types detected on classpath
    Apr 23, 2014 11:54:44 AM org.apache.catalina.startup.HostConfig deployDirectory
    INFO: Deploying web application directory C:\springsource\vfabric-tc-server-developer-2.9.3.RELEASE\base-instance\webapps\manager
    Apr 23, 2014 11:54:44 AM org.apache.coyote.AbstractProtocol start
    INFO: Starting ProtocolHandler ["http-bio-8080"]
    Apr 23, 2014 11:54:44 AM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 1319 ms
    Apr 23, 2014 11:54:44 AM org.apache.catalina.core.ApplicationContext log
    INFO: Initializing Spring FrameworkServlet 'directmail-manager'
    Apr 23, 2014 11:54:44 AM org.springframework.web.servlet.FrameworkServlet initServletBean
    INFO: FrameworkServlet 'directmail-manager': initialization started
    Apr 23, 2014 11:54:44 AM org.springframework.context.support.AbstractApplicationContext prepareRefresh
    INFO: Refreshing WebApplicationContext for namespace 'directmail-manager-servlet': startup date [Wed Apr 23 11:54:44 EDT 2014]; root of context hierarchy
    Apr 23, 2014 11:54:44 AM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
    INFO: Loading XML bean definitions from ServletContext resource [/WEB-INF/directmail-manager-servlet.xml]
    Apr 23, 2014 11:54:44 AM org.springframework.core.io.support.PropertiesLoaderSupport loadProperties
    INFO: Loading properties file from class path resource [manager.properties]
    Apr 23, 2014 11:54:45 AM org.springframework.ws.soap.addressing.server.AbstractAddressingEndpointMapping afterPropertiesSet
    INFO: Supporting [WS-Addressing August 2004, WS-Addressing 1.0]
    Apr 23, 2014 11:54:45 AM org.springframework.beans.factory.support.DefaultListableBeanFactory preInstantiateSingletons
    INFO: Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@7c0f6d9: defining beans [mailManagerEndpoint,mailManagerService,telnetMailServerUserController,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.beans.factory.config.PropertyPlaceholderConfigurer#0,org.springframework.ws.server.endpoint.mapping.PayloadRootAnnotationMethodEndpointMapping#0,org.springframework.ws.soap.server.endpoint.mapping.SoapActionAnnotationMethodEndpointMapping#0,org.springframework.ws.soap.addressing.server.AnnotationActionEndpointMapping#0,org.springframework.ws.server.endpoint.adapter.method.dom.DomPayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.method.SourcePayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.method.jaxb.XmlRootElementPayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.method.jaxb.JaxbElementPayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.method.dom.JDomPayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.DefaultMethodEndpointAdapter#0,org.springframework.ws.soap.server.endpoint.SoapFaultAnnotationExceptionResolver#0,org.springframework.ws.soap.server.endpoint.SimpleSoapExceptionResolver#0,org.springframework.xml.xsd.SimpleXsdSchema#0,manager,org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor]; root of factory hierarchy
    Apr 23, 2014 11:54:45 AM org.springframework.ws.soap.saaj.SaajSoapMessageFactory afterPropertiesSet
    INFO: Creating SAAJ 1.3 MessageFactory with SOAP 1.1 Protocol
    Apr 23, 2014 11:54:45 AM org.springframework.web.servlet.FrameworkServlet initServletBean
    INFO: FrameworkServlet 'directmail-manager': initialization completed in 1012 ms
    user test added
    server URL:null
    
    2014年4月23日上午11:54:41 com.springsource.tcserver.security.PropertyDecoder
    信息:使用基于内存的密钥的tc运行时属性解码器
    2014年4月23日上午11:54:42 com.springsource.tcserver.security.PropertyDecoder
    信息:tcServer运行时属性解码器已在261毫秒内初始化
    2014年4月23日上午11:54:42 org.apache.coyote.AbstractProtocol init
    信息:正在初始化ProtocolHandler[“http-bio-8080”]
    2014年4月23日上午11:54:42 com.springsource.tcserver.servicability.rmi.JmxSocketListener init
    信息:在128毫秒内于127.0.0.1:6969启动JMX注册表
    2014年4月23日上午11:54:42 org.apache.catalina.startup.catalina加载
    信息:初始化在959毫秒内处理
    2014年4月23日上午11:54:42 org.apache.catalina.core.StandardService startInternal
    信息:开始服务Catalina
    2014年4月23日上午11:54:42 org.apache.catalina.core.StandardEngine startInternal
    信息:启动Servlet引擎:VMware vFabric tc Runtime 2.9.3.RELEASE/7.0.42.A.RELEASE
    2014年4月23日上午11:54:42 org.apache.catalina.startup.HostConfig部署描述符
    信息:部署配置描述符C:\springsource\vfabric-tc-server-developer-2.9.3.RELEASE\base instance\conf\Catalina\localhost\ROOT.xml
    2014年4月23日上午11:54:42 org.apache.catalina.startup.SetContextPropertiesRule开始
    警告:[SetContextPropertiesRule]{Context}将属性“source”设置为“org.eclipse.jst.jee.server:mail server manager”未找到匹配的属性。
    2014年4月23日上午11:54:44 org.apache.catalina.core.ApplicationContext日志
    信息:在类路径上未检测到Spring WebApplicationInitializer类型
    2014年4月23日上午11:54:44 org.apache.catalina.startup.HostConfig部署目录
    信息:部署web应用程序目录C:\springsource\vfabric-tc-server-developer-2.9.3.RELEASE\base instance\webapps\manager
    2014年4月23日上午11:54:44 org.apache.coyote.AbstractProtocol开始
    信息:正在启动ProtocolHandler[“http-bio-8080”]
    2014年4月23日上午11:54:44 org.apache.catalina.startup.catalina start
    信息:服务器在1319毫秒内启动
    2014年4月23日上午11:54:44 org.apache.catalina.core.ApplicationContext日志
    信息:正在初始化Spring FrameworkServlet“directmail管理器”
    2014年4月23日上午11:54:44 org.springframework.web.servlet.FrameworkServlet initServletBean
    信息:FrameworkServlet“directmail管理器”:初始化已开始
    2014年4月23日上午11:54:44 org.springframework.context.support.AbstractApplicationContext prepareRefresh
    信息:正在刷新命名空间“directmail manager servlet”的WebApplicationContext:启动日期[Wed Apr 23 11:54:44 EDT 2014];上下文层次结构的根
    2014年4月23日上午11:54:44 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
    信息:从ServletContext资源[/WEB-INF/directmail manager servlet.XML]加载XML bean定义
    2014年4月23日上午11:54:44 org.springframework.core.io.support.properties加载程序支持加载属性
    信息:正在从类路径资源[manager.properties]加载属性文件
    2014年4月23日上午11:54:45 org.springframework.ws.soap.addressing.server.AbstractAddressingEndpointMappingAfterPropertieSet
    信息:支持[WS-Addressing 2004年8月,WS-Addressing 1.0]
    2014年4月23日上午11:54:45 org.springframework.beans.factory.support.DefaultListableBeanFactory预实例化单例
    信息:在org.springframework.beans.factory.support中预实例化单例。DefaultListableBeanFactory@7c0f6d9:定义bean[mailManagerEndpoint,mailManagerService,telnetMailServerUserController,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.beans.factory.config.PropertyPlaceholderConfigurer#0,org.springframework.ws.server.endpoint.mapping.PayloadRootAnnotationMethodEndpointMapping#0,org.springframework.ws.soap.addressing.server.AnnotationActionEndpointMapping#0,org.springframework.ws.server.endpoint.adapter.method.dom.DomPayloadMethodProcessor#0,org.springframework.ws.server.endpoint.adapter.method.jaxb.XmlRootElementPayloadMethodProcessor#0,org.s