Posts by Silvio Silva • 21 points
2 posts
-
0
votes1
answer72
viewsA: How to use junit to test Jax rs in wildfly
You need your class to be running inside the Application Server. You can use Arquillian to upload a Container during testing or you can create a separate project to perform HTTP requests using…
-
2
votes1
answer47
viewsA: Scheduler does not load at application start
Your Bean is being loaded but will only start after configured time. You can confirm this by adding the @Postconstruct Annotation: package br.com.exemplo.agendador.servico; import…