我想在jaxbmarshaler中自動導入以用於我的spring啓動應用程序。這似乎並不能說明編組人員。以下是我目前擁有,任何tipson什麼我缺少jaxbmarshaller spring boot找不到bean?
Maven的依賴性:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-oxm</artifactId>
</dependency>
--- code
@Component
public class DoSomethingService {
@Autowired
private Jaxb2Marshaller marshaller;
marshaller.marshal(MyObject,Stringwriter)
我得到的是說它無法找到Jaxb2Marsaller豆,任何想法的錯誤?
由於在加入這一點,它現在的工作。此外,我不得不添加我想要掃描的軟件包,並且它可以正常工作 marshaller.setPackagesToScan(「package」); – qwertyqwerty