Questions tagged as 'spring'

1
answer

unmount objects in an array

I have a search method in the database that brings me the following result: NotethatinsidetheObject[4]comesanotherarraythatcontainsPeople,People,andPeople.Iwouldlikeittoreturnonlythiswayandnotinsideanotherarrayasitishappeningnow,itshouldlook...
asked by 14.01.2018 / 16:30
1
answer

Spring boot + jpa + LocalDate

I'm not able to configure the convert classes in the spring boot to convert the date coming from the view into String to the controler that expects a LocalDate java8, could anyone give me a hint?     
asked by 25.11.2017 / 19:04
1
answer

How to work with object as attribute in the register of another object using JSP?

I have a Scheduling class. In this class I have a Task object. My question is, when creating the screen to register the schedule, I will have a field to register the Task of this schedule. Imagining that these tasks are already registered in the...
asked by 16.11.2017 / 21:47
1
answer

Error validating Java user, Spring

I'm having an error while validating the user against the database. I debugged and the data (from the front end) is being received by the API. The method that does the search in the database is correct, but the strange thing is that the user an...
asked by 22.09.2017 / 22:01
2
answers

Paging with spring data

I have a list of clients per vendor and I'm trying to create a paging to show 10 and 10 clients on my modal in PHP. If anyone can help me thank you, because I'm still not good at spring data. Below is my repository: import java.util.List;...
asked by 12.07.2017 / 14:36
1
answer

Error When uploading with Bootstrap fileinput

Well I'm having problems with this plugin I would like to know if someone has already messed with it and if it could help in the question I'm having problems communicating with the controller I'm taking the following error 405 Method Not Allo...
asked by 01.06.2017 / 16:08
1
answer

SpringBoot Merge

I'm using Spring Full, with Thymeleaf and SpringBoot, but my question is about SpringData, after implementing the interface to make use of the methods Spring makes available in the repository, when I created the Service, I did not find a method...
asked by 15.06.2017 / 21:49
1
answer

Error Resolving Template "MeuTemplate", template might not exist or might not be accessible by any of the configured Resolvers SPRING Template

Performing an ajax request function buscarDisciplina(){ var codigoDisciplina = String($("#codigo").val()); $.ajax({ url: urlApplication+"/grade-curricular/buscar-disciplina/"+codigoDisciplina, type: 'GET...
asked by 20.04.2017 / 16:13
1
answer

How to implement an authentication service in an SOA project

I'm developing a project using SOA where I have a web application made in Angular 2 and several micro services in Spring Boot, among the services there are the authentication and notification services that could be shared among other application...
asked by 28.03.2017 / 21:46
1
answer

Map Home Page SpringMVC

Hello I would like to map a homepage using springmvc 'I have this method: My    Controller public class Treinamento { @RequestMapping("/inicio") public String inicio(){ return "index"; } } In my    web.xm...
asked by 05.04.2017 / 19:02