tree: 9af117bc4185b1bc2e6ac049baf6f829448efa65 [path history] [tgz]
  1. src/
  2. pom.xml
  3. README.md
archetypes/business-service-springmvc/README.md

Welcome to use ServiceComb Java Chassis

This project(module) is generate by org.apache.servicecomb.archetypes:business-service-springmvc-archetype, it use springmvc provider to develop service producer.

More works can be done further:

  1. Modify “HelloImpl”, add your business service logic, or create some new producers to provide your services. More details can be found : http://servicecomb.apache.org/users/develop-with-springmvc/
  2. Modify “microservice.yaml”, change APPLICATION_ID, service_description.name, version, and service center address, endpoints publish address etc. More details can be found : http://servicecomb.apache.org/users/service-definition/
  3. Modify setting value of “mainClass” in pom.xml for package.

Package your service

Under project(module) root folder, run

mvn package

Then you can get outputs in target folder:

  • lib : contains all dependencies jars
  • xxxxxx-{version}.jar
java -jar xxxxxx-{version}.jar

Notice: If you need to modify configurations in “microservice.yaml” like service center address but don't want repackage the executable jar, you can directly place a new “microservice.yaml” file under the same folder, then configurations will be overridden.