Для того, чтобы объявить HTTP invoker в Spring Boot необходимо просто создать бин HttpInvokerServiceExporter в конфигурации:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
@Configuration public class ServletConfig { @Autowired ContactService contactService; @Bean(name = "/remote/ContactService") public HttpInvokerServiceExporter contactExporter() { HttpInvokerServiceExporter serviceExporter = new HttpInvokerServiceExporter(); serviceExporter.setService(contactService); serviceExporter.setServiceInterface(ContactService.class); return serviceExporter; } } |
HTTP Invoker в Spring Boot