Oie, boa tarde! Fiz meu cógido, mas o "/filmes" não funcionou. Ele me mandou outro endereço.
Segue meu código JAVA:
package com.example.screenmatch.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
@RequestMapping ("/filmes")
public class FilmeController {
@GetMapping
public String carregaPaginaFormulario(){
return "filmes/formulario";
}
}
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Cadastro de filme</title>
</head>
<body>
<h1>Cadastro de filme</h1>
</body>
</html>
Obrigada desde já!