Port Spring portlet in web mvc

I was assigned a restructuring of an existing project. This project is a portal with two functions.

  • Allow users to use single sign-on to view brief information from other existing web applications.
  • user management through other web application APIs / databases

This project uses the Spring MVC 3 Portlet , the eXo-portal container , and the CAS Single Sign (each of which is a stand-alone web application).

Over time, we find that the first function must be disabled. This leaves a single sign-on, allowing users to click the link and reach other systems. We want to transform this project into a regular web application using Spring MVC to get rid of the severity of the eXo platform. Can anyone subject this situation to a request for an offer? Is there an elegant way to do this?

+4
source share
1 answer

This should be a fairly simple conversion. Spring MVC and Spring Security will simplify your Single Sign-On. This will require some grunts to assemble all the parts, most of which will customize the Spring security file. Fortunately, you only need to do this once. Spring MVC is a breeze. This is a fantastic MVC implementation that has great flexibility. I never regretted it.

+1
source

Source: https://habr.com/ru/post/1400502/


All Articles