Posts by Luciana Oliveira • 11 points
4 posts
-
0
votes1
answer35
viewsA: Problem climbing springboot application with Tomcat
You need now to fix the dependency spring-boot-starter-tomcat Tomcat: <dependency> <groupId>org.springframework.boot</groupId>…
javaanswered Luciana Oliveira 11 -
0
votes0
answers10
viewsQ: Ajax problems with Firefox 86
I have an application using Spring Boot, Bootstrap and jQuery running in Firefox. In the combo there is an ajax call. During the GET request, the screen objects disappear and when the combo returns…
-
0
votes2
answers947
viewsA: Spring Boot - Senseless 404 error
To call the index, you need to put @Requestmapping("/"). @RequestMapping(value = "/") public String index() { System.out.println("entrou"); return "index"; } Your URL will look like this:…
-
1
votes1
answer1709
viewsA: Pass Ajax URL parameters
It’s been so long, but I use the parameter pass via date field: within the $.ajax tag. Your example: $.ajax({ url: 'http://api.teste/store/produtos' type: 'GET', dataType: 'json', data: {idcategoria…