Posts by Bruno Viana • 31 points
4 posts
-
0
votes1
answer27
viewsQ: Doubt regarding reporting version in Bower
Good morning, everyone! I am developing a simple website with the purpose of front end study and I came across a question regarding Bower, tool that I am using to manage dependencies, which I could…
-
2
votes2
answers43
viewsA: Error logout cookie Servlet
Hi! For you to generate a cookie is as follows: Cookie cookie = new Cookie("nome_cookie", "valor_cookie"); The getCookies method returns the list of cookies. It does not have the getUsuarioLog…
-
0
votes3
answers5014
viewsA: Testing a void method with mockito
Hi! When you are using mockite, you define how your scenario will be. In this example you quoted you are defining what will happen. Now, if you want to validate whether calls within your void method…
-
1
votes1
answer292
viewsA: Wildfly Persistenceunit Missing dependencies
Hi! The persistence Provider seems wrong to me. <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider> As I recall Wildfly uses Hibernate so it would be the below:…