Posts Eclipse ini 설정
Post
Cancel

Eclipse ini 설정

java 실행파일 경로 설정하기

1
2
-vm
c:/Java/jdk-12.0.2/bin/javaw.exe

utf-8을 기본으로 사용하기

1
-Dfile.encoding=utf-8

클래스 주석 생성시에 @author의 기본값 변경하기.

1
-Duser.name="TtalLaeMiDeul"

아래와 같이 주석 생성시에 @author값에 삽입된다.

1
2
3
4
5
6
7
/**
 * h2database mybatis 설정
 * @author TtalLaeMiDeul
 *
 */
 public class DbH2DatabaseConfig {
 }
This post is licensed under CC BY 4.0 by the author.