Posts by Rodrigo Batista • 165 points
7 posts
-
1
votes1
answer2178
viewsA: Error creating a Restful Web Services with Spring Boot - Whitelabel Error Page -
I believe the error lies in your hierarchy of folders. Follows the same error and resolution. https://stackoverflow.com/questions/31134333/this-application-has-no-explicit-mapping-for-error…
-
1
votes1
answer151
viewsA: Show button only when scroll bar descends, using vuetify
I solved with the following code: <template> <v-btn v-if="irParaTopo >= 200" color="info" dark fixed bottom right fab small @click="$vuetify.goTo(0,0)">…
-
1
votes1
answer285
viewsA: Jackson and json array
In order for a class attribute to be serialized, it must have the annotation @Jsonproperty or have the access function get In this case, just write the note on DTO passing a Collection.…
-
1
votes1
answer151
viewsQ: Show button only when scroll bar descends, using vuetify
Hello. I am creating a "go to the top of the page" button using vuetify. I can get him to the top with the following code: @click="$vuetify.goTo(0,0) But now I would like it only to appear if I…
-
0
votes1
answer233
viewsQ: Springboot with Hibernate and relationship between postgres tables in different schemas
I have the following problem: I created a database called Test and inside there are two schemas: schema1 and schema2. Within each schema has a table: schema1 -> Tabela1 schema2 -> table2 It…
-
0
votes1
answer285
viewsQ: Jackson and json array
All right, guys? I’ve been racking my brain for a few days now but to no avail. I need to insert in the BD information that comes through JSON. It turns out that when an array comes, it doesn’t want…
-
2
votes2
answers1499
viewsQ: Java DTO with Spring Boot 2
I am trying to implement DTO and am having a no size headache. I would like a help. Follow my project, with spring boot 2. I have 3 tables @Entity as follows. Abstract Client with only 1 attribute,…