자바
-
[Eclipse] Console 한글 깨짐 설정2014.05.29
[Eclipse] Console 한글 깨짐 설정
Eclipse idle 한글 깨짐 설정
이클립스 사용시 Console 로그 영역에 한글이 깨져 나오는 경우 아래와 같이 설정을 합니다.
- Run -> Run Configurations -> Common 탭 선택 Console Encoding 항목에 Other 옵션 EUC-KR 입력
'Etc > Tool' 카테고리의 다른 글
forticlient ssl vpn windows 8.1 at status 98% (1) | 2015.03.06 |
---|---|
[Eclipse] Javadoc 의 Author 설정 (0) | 2014.06.10 |
[secureCRT] log scrollback buffer size 늘리기 (0) | 2014.01.27 |
svn share 서버로 프로젝트 추가 (0) | 2014.01.17 |
Sonatype Nexus #2 : 설정 및 maven 과 연결하기 (0) | 2014.01.04 |
[오류] Missing artifact com.oracle:ojdbc14:jar:10.2.0.4.0
Missing artifact
maven repository를 이용하여 ojdbc14.jar dependencies를 추가하면, Missing artifact com.oracle:ojdbc14:compile 오류가 발생하는 일이 발생한다. 여러번 반복해도 문제는 동일했다.. 검색결과 저작권 때문에 발생한다고...??
mesir_repo http://mesir.googlecode.com/svn/trunk/mavenrepo
'Database & NoSQL > DB' 카테고리의 다른 글
[TOOL] PL/SQL developer 환경 설정 (0) | 2015.01.07 |
---|---|
[PL/SQL] developer 프로시저(Procedure) Debugging (0) | 2014.12.13 |
[Oracle] Oracle Instantclient 설치 방법 (0) | 2014.02.13 |
[MS-SQL] mssql Getdate() format 정리 (0) | 2014.02.13 |
다국어 데이터타입 설정 (0) | 2014.02.07 |
[오류] java.lang.ClassNotFoundException: org.springframework.web.servlet.DispatcherServlet
java.lang.ClassNotFoundException: org.springframework.web.servlet.DispatcherServlet
Spring + Maven 프로젝트 실행 시 다음과 같은 예외에 직면할 수 있습니다.
[오류]
심각: Servlet /Mybatis threw load() exception
java.lang.ClassNotFoundException: org.springframework.web.servlet.DispatcherServlet
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1702)
Maven Dependency를 이용하여 추가한 Library들이 위의 Web Deployment Assembly에 등록되지 않은채 배포되기 때문에 java.lang.ClassNotFoundException 이 발생하게 된다.
Properties -> Deployment Assembly -> Add Click -> Java Build Path Entries -> Next -> Maven Dependencies -> Finish
실행하면 Console 창에 정상적인 로그가 출력됩니다.
'Programming > Spring' 카테고리의 다른 글
[Spring] org.xml.sax.SAXParseException: Document root element "configuration", must match DOCTYPE root "mapper" (0) | 2014.05.13 |
---|---|
[오류] org.springframework.jdbc.datasource.DataSourceTransactionManager 빈 생성 에러 (0) | 2014.05.13 |
spring mvc @ResponseBody, @RequestBody json + ajax (2) | 2014.03.12 |
[Spring] Spring AOP를 이용한 메서드 추적 (0) | 2014.02.13 |
spring social (0) | 2014.02.12 |
Tomcat error
Caused by: java.lang.IllegalStateException: Ambiguous mapping found. Cannot map 'socialController' bean method
톰켓 Console에서 위와 같은 오류가 발생한 경험이 있다.
알고 보니 두개에 Controller에서 동일한 URL 맵핑으로 method가 정의 되어 있어서 발생하는 경우 이다.
-homeController.java
@RequestMapping(value = "/facebook/posting")
public void postings(String message , String accessToken, HttpServletRequest request, HttpServletResponse response)
-socialController.java
@RequestMapping(value = "/posting")
public void posting(String message, String accessToken, HttpServletRequest request, HttpServletResponse response)
한곳의 Request Mapping을 변경하면 해결 된다.