4
I’m deploying my first project in Spring Boot + Angular. I have a linux server (centos) where I took a tutorial to install Tomcat: tutorial
The Tomcat is configured according to the tutorial, I’ve already been able to deploy a War but I’m having trouble accessing my Rest method. On the login screen when I click on the login button and follow by the Chrome Bugger, I can see that the POST is triggered, but it does not reach the Rest method to be able to authenticate.
And my return (Response.data) is an error 403: Access to the specified Resource has been Forbidden.
Can anyone tell me if there is any Tomcat configuration or in the spring boot project itself to get this access to my Rest class?
In development mode, everything works perfectly, now putting in a server is where this error occurs.
I’m using it to develop IDE Intellij.