최종 변경 : 2023.10.29


의존성


데이터베이스 의존성

임시로 주석처리


main 페이지

package com.example.testsecurity.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;

@Controller
public class MainController {

    @GetMapping("/")
    public String mainP() {

        return "main";
    }
}