반응형
Notice
Recent Posts
Recent Comments
Link
«   2025/02   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28
Tags
more
Archives
Today
Total
관리 메뉴

스터디 용 블로그

톰캣 5에서 generic 에러 발생 시 본문

카테고리 없음

톰캣 5에서 generic 에러 발생 시

워후 2015. 2. 5. 18:04
반응형

에러 메시지는 다음과 같다.

warning: [options] bootstrap class path not set in conjunction with -source 1.3

C:\Dev\workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp3\work\Catalina\localhost\_\org\apache\jsp\xls_005fto_005fdb\fileUploadProc_jsp.java:58: error: generics are not supported in -source 1.3

List<Object> list = null;

   ^

  (use -source 5 or higher to enable generics)

1 error

1 warning 



해결방법

List<Object> list = null; <- Generic(<> 자체) 부분 삭제처리.







반응형
Comments