본문 바로가기

개발

(3)
javax.net.ssl.SSLException: Received fatal alert: protocol_version 에러 발생시 조치 사항 javax.net.ssl.SSLException: Received fatal alert: protocol_version at sun.security.ssl.Alerts.getSSLException(Alerts.java:208) at sun.security.ssl.Alerts.getSSLException(Alerts.java:154) at sun.security.ssl.SSLSocketImpl.recvAlert(SSLSocketImpl.java:1979) at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:1086) at sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl...
More than one fragment with the name [spring_web] was found. 에러 발생시 조치 사항 java 1.7 에서 1.8 로 업그레이드 후 다음과 같은 에러가 발생했다. Caused by: java.lang.IllegalArgumentException: More than one fragment with the name [spring_web] was found. This is not legal with relative ordering. See section 8.2.2 2c of the Servlet specification for details. Consider using absolute ordering. web.xml 파일을 아래와 같이 수정해서 해결하였다. 1. 기존에는 스키마 버전이 2.5 였는데 xsi:schemaLocation 과 version 을 3.0 으로 변경. 2. 태그 추가 위와..
spring project - java 1.7에서 1.8 로 업그레이드 하기 eclipse에서 spring 프로젝트 개발할떄 java 1.7에서 1.8로 업그레이드 하기 1. jdk 1.8 설치 https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html Java SE Development Kit 8 - Downloads Java SE Development Kit 8 Downloads Thank you for downloading this release of the Java™ Platform, Standard Edition Development Kit (JDK™). The JDK is a development environment for building applications, applet..