반응형
@Component
public class CommonMessageContainer {
@Inject
RootAbsolutePath rootAbsolutePath;
@Autowired
WebApplicationContext webApplicationContext;
public void init() throws Exception {
// 그냥 run 할 때에는 rootAbsolutePath가 있으나,
// war 파일을 만들때는 webApplicationContext에서 값을 넣어줘야 함.
rootAbsolutePath.setRootAbsolutePath(webApplicationContext.getServletContext().getRealPath("/"));
System.out.println(rootAbsolutePath.toString());
}
}
728x90
반응형
'웹 개발' 카테고리의 다른 글
java 동적으로 filed 값 가져오기 (0) | 2019.11.14 |
---|---|
[spring boot] controller 등의 클래스명을 동일하게 사용하는 방법 (0) | 2019.09.23 |
[spring security] Principal in JSP EL expression (0) | 2019.09.20 |
spring 에서 sessionValue 사용 ( session정보를 담은 class 사용 ) (0) | 2019.09.06 |
sencha grid tooltip (0) | 2019.08.24 |