Repository: cxf Updated Branches: refs/heads/master a23c615b6 -> 7487330c9
Resoring the demo endpoint address Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/7487330c Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/7487330c Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/7487330c Branch: refs/heads/master Commit: 7487330c905f6029b9e22c9299373410f0eff9ac Parents: a23c615 Author: Sergey Beryozkin <[email protected]> Authored: Tue Oct 18 16:07:01 2016 +0100 Committer: Sergey Beryozkin <[email protected]> Committed: Tue Oct 18 16:07:01 2016 +0100 ---------------------------------------------------------------------- .../src/main/java/sample/rs/service/SampleRestApplication.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/7487330c/distribution/src/main/release/samples/jax_rs/spring_boot/src/main/java/sample/rs/service/SampleRestApplication.java ---------------------------------------------------------------------- diff --git a/distribution/src/main/release/samples/jax_rs/spring_boot/src/main/java/sample/rs/service/SampleRestApplication.java b/distribution/src/main/release/samples/jax_rs/spring_boot/src/main/java/sample/rs/service/SampleRestApplication.java index 34567f3..358ca4a 100644 --- a/distribution/src/main/release/samples/jax_rs/spring_boot/src/main/java/sample/rs/service/SampleRestApplication.java +++ b/distribution/src/main/release/samples/jax_rs/spring_boot/src/main/java/sample/rs/service/SampleRestApplication.java @@ -45,7 +45,7 @@ public class SampleRestApplication { JAXRSServerFactoryBean endpoint = new JAXRSServerFactoryBean(); endpoint.setBus(bus); endpoint.setServiceBeans(Arrays.<Object>asList(new HelloServiceImpl1(), new HelloServiceImpl2())); - endpoint.setAddress("/a"); + endpoint.setAddress("/"); endpoint.setFeatures(Arrays.asList(new Swagger2Feature())); return endpoint.create(); }
