Using angular, I am not able to insert an array of genres into the Gender property that is in the Manga object.
Using postman to insert the Generos array into the API / manga would look like this.
{
"nome": "BORUTO",
"status": "...
I'm getting a json object from the screen in my back end like this:
{
"pessoa": {
"nome": "aa",
"nomeSocial": "aa",
"tipoPessoa": "F",
"nomePai":"",
"dataNascimento": "15/06/1983",
"nomeMae":...
I have a problem in my web application spring boot compiles and starts the server, however when starting localhost:8080/buscar the following error appears:
Classcontroller:packagecom.web.app.Bresource;importjava.util.ArrayList;importj...
I have the following method in the LoginController class
@RequestMapping(value = "/usuarioEntidade", consumes = MediaType.APPLICATION_JSON_UTF8_VALUE, method = RequestMethod.POST)
public Resposta usuarioEntidade(@RequestBody EntidadesAdministr...
I would like to know if there is (and how can I) develop an application that is made up of several other applications and to access these other parts of the application I need to be logged in.
Do I believe that this concept is linked to micros...
I have a web service in java using Spring Boot, in a class I have an attribute of type date and I use JsonFormat to format the date and be able to convert on the client side, using Gson. However, even setting the locale for the zone of Brazil, w...
I'm developing a web module that I need to upload an image. Do save in the project folder, I'm using the Apache Commons Io:
public class FileUtil {
public static void saveFile(String path, MultipartFile file){
File saveFile = new...
I can run the application normally through the main class with 'tomcat embedded' as a dependency.
However when trying to run the application on some server the IDE itself Eclipse informs that the application can not be run on a server.
I...
Hello
I have the following problem in my application. After running the main method below and typing in the browser the address of my application localhost: 9090 / restauranteWeb is opening a popUp requesting user and password, I thought it...
When I try to copy it generates this error;
main] o.a.coyote.http11.Http11NioProtocol : Failed to start end point associated with ProtocolHandler ["http-nio-8080"]
java.net.BindException: Address already in use: bind
at sun.ni...