44 lines
1.2 KiB
Java
44 lines
1.2 KiB
Java
package nlib.cmm.web;
|
|
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
import org.springframework.security.core.Authentication;
|
|
import org.springframework.stereotype.Controller;
|
|
import org.springframework.ui.ModelMap;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
/**
|
|
* <pre>
|
|
* @Class Name : MainController.java
|
|
*
|
|
* @Description : 메인화면에 표시할 정보를 처리하는 Controller 클래스
|
|
*
|
|
*
|
|
* @프로젝트명: 지방문화원 통합자료관리시스템 구축사업 (2021)
|
|
*
|
|
* </pre>
|
|
*
|
|
* @ ------------ -------- ---------------------------
|
|
* @ 수정일 수정자 수정내용
|
|
* @ ------------ -------- ---------------------------
|
|
* @ 2021. 6. 22. KNKIM 최초 생성
|
|
*
|
|
*
|
|
* @author 이씨플라자 * DIGITALSHIP KNKIM
|
|
* @since 2021. 6. 22.
|
|
* @version 1.0
|
|
*
|
|
*/
|
|
@Controller
|
|
public class MainController {
|
|
|
|
private static final Logger log = LoggerFactory.getLogger(MainController.class);
|
|
|
|
@RequestMapping( {"/index.do"} )
|
|
public String setContent(Authentication authentication, ModelMap model) {
|
|
|
|
log.debug((authentication == null ? "손님 메인 접속" : authentication.getName() + " 메인 접속"));
|
|
return "nlib/cmm/home";
|
|
}
|
|
|
|
} |