Posts by Arthur • 152 points
20 posts
-
1
votes1
answer21
viewsA: Receive Email with Android Java
Try this String assunto = "assunto teste"; String mensagem = "mensagem teste"; Intent email = new Intent(Intent.ACTION_SEND); email.putExtra(Intent.EXTRA_EMAIL, emailDoUsuario);…
-
1
votes1
answer23
viewsA: PUT problems with Spring data JPA
check if in DTO, vc is passing the car public Static Rentals convertibleEntityEmDto(Rentals) { Rent dto = new Rent(); dto.setId(aluguel.getId()); dto.setEntrega(rent.getEntrega());…
-
1
votes1
answer1140
viewsA: Spring data JPA error (Parameter 0 of constructor and entityManagerFactory)
I needed to add the relationship in the Entity @OneToOne @JoinColumn(name = "id_endereco") private Endereco endereco;
-
0
votes1
answer1140
viewsQ: Spring data JPA error (Parameter 0 of constructor and entityManagerFactory)
Guys, for hours I’ve been trying to solve a problem in my Spring Data JPA I execute the code and I get this error Description: Parameter 0 of constructor in…
-
0
votes1
answer178
viewsQ: Update data in JSON with Vue.js
I have a small JSON called "users" [ { "id": 1, "name": "Arthur", "data": "1998-11-22", "email": "[email protected]", "departamento": "Vendas" } ] And another JSON called "departments" [ { "id": 1,…
-
-2
votes1
answer61
viewsQ: Heavy site because of images
I developed a website for a customer who has a feed store, with HTML5 and CSS3, nothing with backend and database, he just wants to publicize the products, prices and etc. The /img folder is 125MB…
-
0
votes2
answers160
viewsA: Directives
The solution is this <template> <div class="container"> <div class="row"> <div class="col-xs-12 col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3"> <h1>Directives…
-
0
votes2
answers160
viewsQ: Directives
How to build a Custom Directive that works like v-on? Briefly the directive needs to have the same functionality as the v-on:click I tried things like: //App.vue: <h1…
-
0
votes2
answers249
views -
0
votes2
answers249
views -
0
votes3
answers253
views -
0
votes3
answers253
views -
0
votes3
answers253
views -
5
votes3
answers182
views -
1
votes1
answer57
views -
1
votes4
answers6237
viewsA: How does the "#include" directive work?
You’re importing a text. What the compiler does is simply the same as you copy and paste the text inside include into the text that is in the main source. This is why the position in which it is…
-
-1
votes1
answer114
viewsQ: Java Web Project
To program Java Web, you need to use the Javaserver Faces extension or I can only use HTML pages with Servlet? And what’s the difference of using without JSF?
-
0
votes1
answer57
views -
0
votes1
answer174
viewsQ: How does "array.Sort()" work?
How does the array.sort((a, b) => a - b) ? Why is this symbol =>, and why this operation a - b Are you subtracting the elements? That doesn’t make sense to me.…
-
1
votes2
answers313
viewsQ: Problems with array "Uncaught Referenceerror: Function is not defined"
Beauty guys? It happens the following, I created a tool to generate gambling (quina, mega sena and etc. link tool: generaterandom.000webhostapp.com) In the attached image we see the part where the…