Spring/@PostConstruct (1) 썸네일형 리스트형 @PostConstruct 아래처럼 작성하면 브라우저가 열린다. package com.shoppingmall.config;import java.awt.Desktop;import java.net.URI;import javax.annotation.PostConstruct;import org.springframework.stereotype.Component;/** * @Explain : local 전용서버 어플리케이션(개발 모드, 서버를 시작하면 localhost 브라우저를 자동 실행 * @ * */@Componentpublic class InitBrowser { @PostConstruct public void init() { String url = "http://localhost:8080"; System.setProperty.. 이전 1 다음