Terminado todos os controladores e correção de bugs e segurança

This commit is contained in:
2026-03-10 20:47:04 -03:00
commit f131855d84
51 changed files with 2294 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package com.agendaestudantil.configuracao;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class ResourceController {
@GetMapping("/")
public String index() {
return "forward:/index.html";
}
}