14 lines
296 B
Java
14 lines
296 B
Java
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";
|
|
}
|
|
}
|