Posts by Felipe Machado • 137 points
13 posts
-
0
votes1
answer1105
viewsQ: Run an angular project 6 from github
I uploaded a pro github project,I believe that because it is too big the file has been "cut" some files, consequently when I download again (using git clone) the code does not run on the server.…
-
0
votes1
answer205
viewsQ: What are the differences between hashed or tree map implementation?
What is the advantage of implementing maps by table hash instead of the binary tree?
hashasked Felipe Machado 137 -
1
votes1
answer519
viewsQ: Imprimi [Object Htmlinputelement]
When I mount my table dynamically only my first element is mounted correctly. Others print a strange datum [Htmlinputelement Object] index <!DOCTYPE html> Product <h1…
-
1
votes1
answer1579
viewsA: Import github project into STS (Spring)
It was not important ,as it is a Maven project or has to import as Maven ->Existing Maven Projects
-
0
votes1
answer1579
viewsQ: Import github project into STS (Spring)
I’m having a hard time importing a spring project from github, and I can successfully import the project when it’s eclipse Oxygen from the java perspective (Desktop). Procedure used for importing :…
-
2
votes1
answer241
viewsQ: Import github code for eclipse Oxygen
I have a code that I would like to import into my eclipse by downloading the zip, however at the time of importing the following error No Projects are found to import Searching for git features ,I…
-
1
votes1
answer900
viewsQ: Sort a chained list with Java Selection algorithm
I am working on sorting algorithms. I have implemented sorting with Bubble Sort, however, must be implemented with an example where the algorithm is not stable( Selection ,Quicksort, Heapsort or…
-
0
votes1
answer38
viewsQ: Doubt regarding Join with multiple tables
I have a sale class and the same receives several products(manyToOne) and customer (oneToMany) and would like to join all in a Join to make a report with only the desired information. I tried to…
-
3
votes1
answer750
viewsQ: JPA make a Join of a table that has attribute @manyToOne and @Manytomany
I have a question regarding table junctions ,I have a class sale the same has Customer,dTCompra,listProducts.I would like to make a report with the product name,customer name ,product value and…
-
0
votes1
answer269
viewsA: Error 500 in java webservices when testing in Postman
I switched the use database to postgresql and found a way to list which was the problem Right version of the list method public List<Cliente> imprimir() { Conexao con = new Conexao();…
-
0
votes1
answer269
viewsQ: Error 500 in java webservices when testing in Postman
I am a good time trying to solve this problem,I configured my environment about 3 times but when it comes to testing Postman always gives the error 500,I believe that my problem is not in the entity…
-
0
votes1
answer95
viewsQ: JPA Error when inserting a product object that has reference to an existing object
I am doubtful in the note manytomany ,I know that it serves to indicate to white that he needs to create an intermediate table and that in turn is located on top of an element that will be list…
-
0
votes1
answer633
viewsQ: JPA insert an object that has a list as attribute
I am developing a layered system(packages),to exercise the concepts of class and came across a question I would like to create a product class,the same has attributes that are references of other…