Posts by Tiago_Albuquerque • 80 points
6 posts
-
0
votes1
answer53
viewsA: How to access mother class fields through inheritance?
Hello! Yes, the super serves to access the constructor of the Mother class. To access the attributes you can do as follows: public class Filha extends Mãe { // Extendendo da classe Mãe public…
-
3
votes1
answer65
viewsQ: Why is my route in React /#/?
I created a route structure with Hashrouter in React and everything works fine, but my route always http://localhost:3000/#/ + a rota. return ( <div> <HashRouter> <Switch>…
-
0
votes0
answers21
viewsQ: Invalid_grant when updating vuex-oidc nuxtJS token with automaticSilentRenew option using Keycloak
I would like to update the Keycloak access token on nuxtJS login using the vuex-oidc library, but I get the invalid-Grant error when the token expires and the user is dropped. I need the user to…
-
2
votes0
answers248
viewsQ: How do I set up Webpack and package.json to run the React project?
I made all the necessary Webpack settings and the project starts, but apparently it does not run the css in the project and only leaves a blank screen. Before the Webpack settings my Package.json…
-
0
votes0
answers1104
viewsQ: How to resolve Typeerror: Cannot read Property of Undefined
I’m getting Typeerror: Cannot read Property 'nextpage' of Undefined when I try to use the already set value of the page to receive a new paged result. In case I can read the value the first time,…
reactasked Tiago_Albuquerque 80 -
1
votes2
answers3560
viewsQ: How to fix the error: cannot deserialize from Object value (no delegate- or Property-based Creator) using Spring Boot?
I am trying to send a JSON to my Spring method for entry into the database but I get the following message: JSON parse error: Cannot construct instance of br.com.marketHubServer.model.Collaborator…