Merge commit 'e3c0112e8f85ff2ad4ac1155b0c94c487ea15a83' into wip-customer

* commit 'e3c0112e8f85ff2ad4ac1155b0c94c487ea15a83':
  changed POST /customers/{id}/toaccounts endpoint result format
  changed POST /customers/{id}/toaccounts endpoint result format
This commit is contained in:
Andrew Revinsky (DART)
2016-03-23 22:15:22 +03:00
2 changed files with 11 additions and 1 deletions

View File

@@ -5,7 +5,6 @@ import net.chrisrichardson.eventstore.javaexamples.banking.common.customers.Cust
import net.chrisrichardson.eventstore.javaexamples.banking.common.customers.CustomerResponse;
import net.chrisrichardson.eventstore.javaexamples.banking.common.customers.ToAccountInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
import rx.Observable;

View File

@@ -6,6 +6,9 @@ import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.http.converter.StringHttpMessageConverter;
import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter;
import org.springframework.web.method.support.HandlerMethodReturnValueHandler;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter;
@@ -32,4 +35,12 @@ public class CustomersCommandSideWebConfiguration extends WebMvcConfigurerAdapte
return new FakeThing();
}
@Override
public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
// put the jackson converter to the front of the list so that application/json content-type strings will be treated as JSON
converters.add(new MappingJackson2HttpMessageConverter());
// and probably needs a string converter too for text/plain content-type strings to be properly handled
converters.add(new StringHttpMessageConverter());
}
}