Posts by Renan Fernandes • 62 points
4 posts
-
0
votes0
answers144
viewsQ: What is the shortest way to implement 2FA with Angular and Spring
I am using the two technologies mentioned above and would like to know if you know any library, framework or functional example that facilitates the implementation of an authentication in two…
-
1
votes1
answer171
viewsA: How do I make the endpoints of an API, made with Spring Boot, visible only to the application pages?
Add the dependency of the spring security module and implement the abstract class Websecurityconfigureradapter, you can in the method define the access restrictions to each path of your application,…
-
0
votes0
answers116
viewsQ: Angular shift detection not working for notification component
Hello. I was implementing a notification component to present, on a screen, successful or error messages for user operations. It is based on a Subject in a Service shared, where it feeds a list into…
-
2
votes1
answer72
viewsQ: How to use junit to test Jax rs in wildfly
I created the following test to validate the registration but instead of returning 201 with the created resource is generating this generic error. My DAO is running on its own in a normal way (I…