Posts by Leandro Jorge • 79 points
10 posts
-
0
votes1
answer74
viewsQ: in Angular the service.ts is also transposed and executed in the browser even though it does not have an html attached to it?
my doubt is about the angular security and business rules, I can leave some kind of business rule at the angle at least in service.ts because the service is running on Node and does not have an HTML…
-
1
votes1
answer692
viewsQ: jpaRepository + JPQL + JOIN
I have the query below running in my code but using the real names of the table and fields, in this same structure below works, but how do I do to do the same but using the language JPQL, I am using…
jpqlasked Leandro Jorge 79 -
0
votes1
answer16
viewsA: How to put the period in javadoc
Order of Tags Include tags in the following order: @Author (classes and interfaces only, required) @version (classes and interfaces only, required. See Footnote 1) @param (methods and constructors…
javadocanswered Leandro Jorge 79 -
0
votes1
answer16
viewsQ: How to put the period in javadoc
"Period is Missing in javadoc", can anyone tell me what the javadoc period is? would be @Since ? someone can tell me.
javadocasked Leandro Jorge 79 -
0
votes1
answer46
viewsQ: Using the Save from Spring data command
When using the command save Spring Date to make the Insert in the table, I am obliged to annotate all fields in the model class with the annotations @Column? If the fields I didn’t write down…
asked Leandro Jorge 79 -
1
votes0
answers69
viewsQ: How did Mandar Sort view URL in native pagination query?
The structure below works perfectly, but when I send after the input and pagination data the command Sort it from the Sql error, which I need to put in the query to accept the Sort for the field I…
-
0
votes1
answer103
viewsA: How to do native query with paging?
I already found the answer, for those who have interested the syntax is the following: @Query(value = "select i.* " + "from tabela1 r " + "join tabela2 ri on ri.chavetabela2 = r.chavetabela1 " +…
queryanswered Leandro Jorge 79 -
1
votes1
answer103
viewsQ: How to do native query with paging?
I’m managing to make a simple select, but I don’t know the structure of how to make a select using Join. Follow the code below: That code works: @Query(value = "SELECT * FROM tabela1 /*#pageable*/",…
queryasked Leandro Jorge 79 -
0
votes2
answers923
viewsA: Is it possible to use native query + spring date for paging?
Worked !!!!! worked exactly this way without order by, the intention was to simulate the Page findAll of Pagingandsorting and the test was successfully run, I had already tried to do with Count as…
-
4
votes2
answers923
viewsQ: Is it possible to use native query + spring date for paging?
I need to make a pagination using dynamic querys because I have to do many joins, I’m trying to make only one select * to test the use of native query + spring data, but the error message is as…