Reputation: 53
I have web.xml and applicationContext.xml from Spring's project. I want to change this and get only Java configuration for my project but I can't figure how.
web-xml
<web-app id="WebApp_ID" version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>Spring + JAX-WS</display-name>
<servlet>
<servlet-name>jaxws-servlet</servlet-name>
<servlet-class>
com.sun.xml.ws.transport.http.servlet.WSSpringServlet
</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>jaxws-servlet</servlet-name>
<url-pattern>/hello</url-pattern>
</servlet-mapping>
<!-- Register Spring Listener -->
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
</web-app>
applicationContext.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:ws="http://jax-ws.dev.java.net/spring/core"
xmlns:wss="http://jax-ws.dev.java.net/spring/servlet"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://jax-ws.dev.java.net/spring/core
http://jax-ws.dev.java.net/spring/core.xsd
http://jax-ws.dev.java.net/spring/servlet
http://jax-ws.dev.java.net/spring/servlet.xsd"
>
<wss:binding url="/hello">
<wss:service>
<ws:service bean="#helloWs"/>
</wss:service>
</wss:binding>
<!-- Web service methods -->
<bean id="helloWs" class="it.capgemini.HelloWorldWS">
<property name="helloWorldBo" ref="HelloWorldBo" />
</bean>
<bean id="HelloWorldBo" class="it.capgemini.soap.HelloWorlBoImpl" />
</beans>
Thanks for any suggestion!
Upvotes: 1
Views: 1522
Reputation: 3289
Spring provides a convenient base class for JAX-WS servlet endpoint implementations - SpringBeanAutowiringSupport
. To expose our HelloService
we extend Spring’s SpringBeanAutowiringSupport
class and implement our business logic here, usually delegating the call to the business layer. We’ll simply use Spring’s @Autowired
annotation for expressing such dependencies on Spring-managed beans.
@WebService(serviceName="hello")
public class HelloServiceEndpoint extends SpringBeanAutowiringSupport {
@Autowired
private HelloService service;
@WebMethod
public void helloWs() {
service.hello();
}
}
The service itself:
public class HelloService {
public void hello() {
// impl
}
}
And configuration
@Configuration
public class JaxWsConfig {
@Bean
public ServletRegistrationBean wsSpringServlet() {
return new ServletRegistrationBean(new WSSpringServlet(), "/api/v10");
}
@Bean
public HelloService helloService() {
return new HelloService();
}
}
Upvotes: 3