Posts by Murylo Capucho • 35 points
9 posts
-
0
votes1
answer41
viewsA: Fulltext Mysql with Spring Boot
Good afternoon, everyone, @Query(nativeQuery = true, value = "SELECT * FROM position WHERE MATCH (name, area) AGAINST (':description' IN BOOLEAN MODE)") List<Position>…
-
0
votes1
answer41
viewsQ: Fulltext Mysql with Spring Boot
Good morning, I am trying to make a fulltext in mysql with spring boot, in mysql when I do the test with the sql command, the result brings back correctly, but when I pass the spring boot sql…
-
0
votes1
answer54
viewsQ: How to add registration to the list without harming existing data
Good afternoon, everyone, I have a model called User that has a permission list, example: @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @NotNull private String nome;…
-
1
votes1
answer140
viewsA: API testing by passing token
I managed to solve, follows in example: @Test public void shouldStatus200_FindAll() { RestAssured.enableLoggingOfRequestAndResponseIfValidationFails(); given().auth().oauth2("String token")…
-
0
votes1
answer140
viewsQ: API testing by passing token
Good morning, I’m doing Api Testing, as follows the example: @Test public void shouldStatus200_FindAll() { RestAssured.enableLoggingOfRequestAndResponseIfValidationFails();…
-
0
votes1
answer239
viewsQ: sql result in spring boot
Good afternoon, I need help to make an endpoint in Spring Boot, in the database (Mysql), I have the following query: SELECT U.NOME, P.DESCRICAO FROM USUARIO_PERMISSAO UP JOIN USUARIO U ON…
-
0
votes2
answers560
viewsA: Angular Deploy 8 Heroku
I compared it to my system and it has a different thing. "scripts": { "ng": "ng", "start": "node server.js", "build": "ng build", "test": "ng test", "lint": "ng lint", "e2e": "ng e2e",…
-
-1
votes2
answers322
viewsQ: Date problem in spring boot + mysql
Good afternoon, I’m trying to make a findAll on spring boot because the date is coming with 1 day late. public List<ContaReceber> findAll() { return contaReceberRepository.findAll(); }…
-
1
votes1
answer297
viewsQ: Popular table at angle 8
Good morning, I am trying to popular a table on my system, because the backend done in spring sends me a JSON as follows, an object with several lists inside, example: { "contasDespesasQuitadas": […