Questions Management – Core Option Service – Create core-option-service project using Spring Tool Suite

Check out the full series of Questions Management tutorial here.

Core Option Service is the last core service of the first stage that we need to create, which is used to manage the options of a question. It also uses the same dependencies as the two core services that we built in previous posts.

I will also summarize the key steps in creating the core-option-service project as follows:

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

Questions Management – Core Option Service – Create core-option-service project using Spring Tool Suite

For the dependencies to be used for the core-option-service project, similar to the other core services, we will also use the following dependencies:

Questions Management – Core Option Service – Create core-option-service project using Spring Tool Suite

Result:

Questions Management – Core Option Service – Create core-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> declarations to use the parent project of the questions-management project:

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

Add Comment