1 package de.spring.webservices.configuration;
3 import org.springframework.context.annotation.Bean;
4 import org.springframework.context.annotation.Configuration;
5 import org.springframework.http.converter.xml.MarshallingHttpMessageConverter;
6 import org.springframework.oxm.jaxb.Jaxb2Marshaller;
9 public class WadlConfiguration {
12 public Jaxb2Marshaller marshaller() {
13 Jaxb2Marshaller marshaller = new Jaxb2Marshaller();
14 marshaller.setPackagesToScan("org.jvnet.ws.wadl");
19 public MarshallingHttpMessageConverter marshallingHttpMessageConverter(Jaxb2Marshaller marshaller) {
20 return new MarshallingHttpMessageConverter(marshaller);