Posts by André Luiz de Paula Britto • 77 points
4 posts
-
0
votes1
answer153
viewsQ: Modelling View Controller Unit Test with Mockite and Spring
I need to mount the unit test for the controller below (for example only): import javax.servlet.http.HttpServletRequest; import org.springframework.web.bind.annotation.GetMapping; import…
-
1
votes1
answer705
viewsQ: Unit Test Controller Spring with Mockito
I’m trying to test the method below my controller: @RequestMapping(value = "/listar", method = RequestMethod.GET) public ModelAndView iniciaTela(ModelAndView model, HttpServletRequest request){…
-
2
votes1
answer91
viewsQ: Slow opening of Jframe with Hibernate
Good morning to all. I have a Swing application that has a Jframe using Hibernate 3 for networked Mysql BD persistence. When I run through Netbeans, it opens very fast. But when I run the jar built…
-
3
votes2
answers284
viewsQ: How to implement classes with private method?
I am rewriting the code of an application seeking the best use of interfaces and I came across a problem: I have a class that needs to have a private method and I want to create an interface for it,…