Posts by Thiago Bomfim • 533 points
11 posts
-
0
votes1
answer25
viewsA: Change Actuator healthcheck endpoint in Spring Boot 1.5
I suggest looking at the documentation according to the version you are using. https://docs.spring.io/spring-boot/docs/1.5.0.RELEASE/reference/htmlsingle/ Probably adding the following property…
-
1
votes1
answer282
viewsA: How to create a specific Picker date
Here is an example using Flutter datepicker, since version 1.2 Flutter’s native datepicker already allows a range. For more information:…
-
0
votes1
answer68
viewsA: Error in mappedBy when making 2 user relationship
The problem you are experiencing is the following: You mapped @Onetomany wrong. @JsonIgnore @OneToMany(mappedBy = "costumer", insertable='false', updatable='false') private List<Order>…
-
15
votes3
answers4946
viewsA: What is a monorepo? What are its advantages and disadvantages?
Monorepo as its name says, would be a single repository to maintain the code of several projects. In a work environment, where there are several separate projects that are integrated, it is common…
software-architectureanswered Thiago Bomfim 533 -
2
votes1
answer53
viewsA: When modifying a data before sending to Query it updates the table
Hello, What is probably happening is this: You have the Company object and it is in the Hibernate session. Once you modify this object and flush() the data will be updated. So, what’s happening is…
-
0
votes2
answers51
viewsA: I’m not getting my wicket application running
The problem you’re having is java.lang.Nullpointerexception on line 16, which I’m pretty sure is caused by dependency injection. @SpringBean private HelloService helloService; That your service is…
wicketanswered Thiago Bomfim 533 -
5
votes1
answer63
viewsA: Undesirable result - Query SQL
AVG is an aggregation function, so it will aggregate the value you put into the function. In your case the value average. What you want is to add the average of the values per day, as you did, you…
-
2
votes2
answers1849
viewsQ: Is it possible to get the firebase user via UID?
Doubt consists in the following problem: I have a project using firebase and Ionic 3. I am using the authentication mode via E-mail, in which you have the email and UID stored. For example: I have 2…
-
1
votes1
answer99
viewsA: Persistent Hibernate Resource Return
From what I understand you want to save the user by passing the id of a new profile, is that right? If so, the value of the name will always be null. @Onetoone by default is EAGER(documentacao…
-
0
votes2
answers276
viewsA: Reports with Jasper Ports
There are two forms of popular a report in Jasperserver: 1) You can create the query in Jasper itself, and you won’t need any JAVA entities. Jasperserver provides the ability to create dynamic…
-
2
votes2
answers2211
viewsA: How to save images in the database using spring boot?
I believe your "image" element is already a array of bytes, if it is, just note the field as @Lob and it is good to ensure that in the bank is with a type that supports images of suitable size for…