IndexController ( 기존 Index 삭제 )
페이지 정보
![profile_image](https://dancepkt.cafe24.com/data/member_image/ad/admin.gif?1630310007)
본문
package web.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.servlet.ModelAndView;
import lombok.extern.log4j.Log4j2;
@Controller
@Log4j2
public class IndexController {
@GetMapping("/")
public ModelAndView getIndex() {
log.info("index ..............");
ModelAndView mv = new ModelAndView("/index"); //index.html 연동
return mv;
}
}
- 이전글application.properties 24.06.18
- 다음글index.html 24.06.18
댓글목록
등록된 댓글이 없습니다.