blob: 470c1f9c8d1dd96b492e318528611519a2475b0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package com.stileeducation.markr.config;
import com.fasterxml.jackson.dataformat.xml.XmlMapper;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class XmlMapperConfig {
@Bean
public XmlMapper xmlMapper() {
return new XmlMapper();
}
}
|