- added api-gateway-service

- fixed ObservableReturnValueHandler
This commit is contained in:
dartpopikyardo
2016-02-29 21:41:55 +03:00
parent 0a38ccd09e
commit 91361a1b18
25 changed files with 502 additions and 30 deletions

View File

@@ -42,7 +42,7 @@ public class CustomersQuerySideServiceIntegrationTest {
final CustomerResponse customerResponse = restTemplate.postForEntity(baseUrl("/customers"),customerInfo, CustomerResponse.class).getBody();
final String customerId = customerResponse.getId();
//assertCustomerResponse(customerId, customerInfo);
assertCustomerResponse(customerId, customerInfo);
}
private void assertCustomerResponse(final String customerId, final CustomerInfo customerInfo) {

View File

@@ -12,7 +12,7 @@ import java.util.Arrays;
import java.util.List;
@Configuration
@Import({CustomersQuerySideServiceConfiguration.class, CustomersCommandSideServiceConfiguration.class})
@Import({CustomersQuerySideServiceConfiguration.class, CustomersQuerySideServiceConfiguration.class})
public class CustomersQuerySideServiceTestConfiguration {
@Bean