-2

I am working on a standalone Rest API application using spring boot MVC. I am required to use Vuejs on the front-end to interface with the Java rest service. Another requirement is to secure the UI and rest API with SiteMinder. Being new to vuejs, does anyone have any examples I can use to secure the vuejs app

Derek
  • 1
  • Go through this https://www.springboottutorial.com/spring-boot-vue-full-stack-crud-maven-application – deen Nov 22 '19 at 07:30

1 Answers1

1

Welcome to Stackoverflow.

Although your question is too generic. Let me try to answer for backend.

  • Create Spring Boot Project
  • Use Spring Rest API to communicate between frontend and backend.
  • Use Spring security to secure your URL based on permission/role.

You may find examples over internet for each task.

Please follow them and in future try to shoot specific question.

Swarit Agarwal
  • 1,916
  • 19
  • 29