d128661566fc803924801cf9658d212c133321f4
[SpringWebServicesForFun/.git] /
1 package de.spring.webservices.configuration;
2
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;
7
8 @Configuration
9 public class WadlConfiguration {
10         
11         @Bean
12         public Jaxb2Marshaller marshaller() {
13                 Jaxb2Marshaller marshaller = new Jaxb2Marshaller();
14             marshaller.setPackagesToScan("org.jvnet.ws.wadl");
15             return marshaller;    
16         }
17
18         @Bean
19         public MarshallingHttpMessageConverter marshallingHttpMessageConverter(Jaxb2Marshaller marshaller) {
20                 return new MarshallingHttpMessageConverter(marshaller);
21         }
22 }