Java/Spring 현재 작업폴더 확인

1 개요[ | ]

How to get the current working directory in Java
Spring 현재 작업폴더 확인
String cwd = System.getProperty("user.dir");

2 스프링부트 예시[ | ]

@SpringBootApplication
public class DemoApplication {
	public static void main(String[] args) throws IOException {
		SpringApplication.run(DemoApplication.class, args);
		System.out.println( System.getProperty("user.dir") );
		// D:\workspace\demo
	}
}

3 같이 보기[ | ]

4 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}