Posts by Rafael Caetano da Silva • 69 points
4 posts
-
1
votes2
answers184
viewsQ: How to interrupt the database query using time out in Hibernate?
I am developing an application that queries a gigantic database, so I would like to maintain the integrity of this allowing Hibernate to query up to 30 seconds. Faced with this problem, what would…
-
1
votes1
answer499
viewsQ: How to use Git commands without sudo?
Whenever I need to use some commands like git pull, git stash, a message pops up that couldn’t perform the operation because the permission wasn’t enough. How do I make sure you don’t have to wear…
gitasked Rafael Caetano da Silva 69 -
3
votes2
answers7576
viewsQ: What is the best way to undo a merge with staged and modfy elements with conflicts?
I did an unnecessary merge with a branch, now I have several elements in staged and not merged because of conflicts. What’s the best way to reverse this merge and leave the branch in the last commit…
gitasked Rafael Caetano da Silva 69 -
1
votes1
answer189
viewsQ: How to read a return Map<String, String> Java in javascript?
When making a request to a java control that returns a key map and value "String": @ControllerSupport public Map< String, String > teste() { Map< String, String > teste = new HashMap<…