Questions Management – Composite Option Service – Create composite-option-service project using Spring Tool Suite

Check out the full series of Questions Management tutorial here.

After the Composite Question Service, the Composite Option Service is what we need. In this tutorial, I take a look at some important steps in the process of creating new Spring Boot project for this service!

In the New Spring Starter Project window, after filling in the information for our project, the Location section also points to the project questions-management composite folder:

Questions Management – Composite Option Service – Create composite-option-service project using Spring Tool Suite

In the selection of dependencies to use for composite-option-service project, similar to composite-question-service, we will only use the following dependencies:

Questions Management – Composite Option Service – Create composite-option-service project using Spring Tool Suite

Result:

Questions Management – Composite Option Service – Create composite-option-service project using Spring Tool Suite

Next, I’ll revise this project a little bit so that it uses the parent project of the questions-management project.

In the project’s pom.xml file, I will delete the current <parent> and <properties> to declare using the parent project of the questions-management project:

Then declare the composite-option-service project as a module of the questions-management project as follows:

Add Comment