jdk 1.5에 대한 질문입니다.
- 작성자 :
- 이*섭
- 작성일 :
- 2013-04-29 14:22:33
- 조회수 :
- 1,519
- 구분 :
- 개발환경
- 진행상태 :
- 완료
Q
jdk 1.5를 꼭사용해야하는데
1.5 에서 전자정부 2.5를 사용하게 되면 jsp editor가 제대로 작동하지않는데
사용할 방법이 없을까요??
1.5 에서 전자정부 2.5를 사용하게 되면 jsp editor가 제대로 작동하지않는데
사용할 방법이 없을까요??
A
안녕하세요. 이영섭님
이클립스 구동은 jdk1.6으로 하시고, 소스 컴파일은 jdk1.5로 하시면됩니다.
1.이클리스 jdk1.6으로 강제 지정방법
C:\eGovFrame-2.5\bin\eclipse\eclipse.exe -vm C:\eGovFrame-2.5\bin\jdk1.6.0_35\bin\javaw.exe
2.소스 jdk1.5로 컴파일 방법
pom.xml에서
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins<groupId>
<artifactId>maven-compiler-plugin<artifactId>
<configuration>
<source>1.5<source>
<target>1.5<target>
컴파일 버전 명시하면 됩니다.
고맙습니다.
이클립스 구동은 jdk1.6으로 하시고, 소스 컴파일은 jdk1.5로 하시면됩니다.
1.이클리스 jdk1.6으로 강제 지정방법
C:\eGovFrame-2.5\bin\eclipse\eclipse.exe -vm C:\eGovFrame-2.5\bin\jdk1.6.0_35\bin\javaw.exe
2.소스 jdk1.5로 컴파일 방법
pom.xml에서
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins<groupId>
<artifactId>maven-compiler-plugin<artifactId>
<configuration>
<source>1.5<source>
<target>1.5<target>
컴파일 버전 명시하면 됩니다.
고맙습니다.