Posts by Thiago Vulcão • 116 points
5 posts
-
0
votes0
answers23
viewsQ: Use in neo4j clauses WHERE conditioning if value exists
Good afternoon, you guys! I’m having a little doubt and I haven’t found an elegant answer in the documentation of neo4j. I am mounting an endpoint with multiple combination parameters for search, so…
-
0
votes1
answer183
viewsA: Spring MVC - Multiple Builders
You are trying to make the instance of a Spring service object, try using @Autowired to inject this object and make sure it works. When you use a @Service, you are creating a service with inversion…
-
2
votes1
answer61
viewsA: Difficulty to implement Javamail!
I think you need to run your code in debug mode by placing a point break to analyze this email sending implementation. From the log you posted it seems to me that it’s not even called, or if it’s…
-
0
votes1
answer74
viewsA: Report in IREPORT - STATUS
I have a practice that I love to use. In reporting, I like to separate data processing for the database and IO for the application. Thinking in this sense, when you make a query in the database and…
-
4
votes1
answer104
viewsA: How to answer a json using Gson
Notice a detail, your Person Map references, so the representation of your JSON will treat each item as an independent item. The fact of being Map forces this, because it is a highly dynamic object.…