Spring + GWT, how to disable user authorization prompt for request for input?

I am currently working on support for a Spring + GWT intranet application that was provided to me in the last hour, I need to implement a dozen fixes for this software including tests and stuff.

One thing I couldn't find is that:

I have a view and a presenter, the presenter is responsible for a function that initiates a request to the DB to insert an object.

When I click the button, a user authorization (login) prompt appears, requiring an additional login to complete the operation.

I couldn't figure out where to remove this additional authorization request?

+2


source to share


1 answer


I understood:

This was the annotation above the method on mine EntityRemoteServiceAsyncImpl

.



So if you have any problem with this check your class at @RequireAuthorization

Just remove or comment it out.

+1


source







All Articles