Posts by Breno Cabral • 21 points
4 posts
-
-1
votes1
answer256
viewsQ: Take data from a dynamic table to write to the database
Good night, you guys. I’m having a hard time how to get the data from a dynamic table and record this information in the database. The idea is this, it’s a system for controlling drivers' working…
-
0
votes2
answers1013
viewsA: Regular expression to select whole word and case sensitive in sharp word
RESOLVED Thank you William, it worked!!! The only detail is that I ended up doing it this way: relato.setDescricaoRelato(relato.getDescricaoRelato().replaceAll("(?i)(?u)(\\b" + texto + "\\b)",…
-
2
votes2
answers1013
viewsQ: Regular expression to select whole word and case sensitive in sharp word
I need to make a program that searches a certain word in a set of texts and marks the word searched in the middle of the text. For this I developed the following method: public void…
-
0
votes2
answers1310
viewsQ: Spring data JPA findOne() returns null
I am developing an application using Spring MVC, with spring data jpa in the persistence layer. When I try to do a search using the method findOne (or findById) returns always null. I already…