본문 바로가기

Error50

Unsupported Media Type (415) 415 Unsupported Media Type 발단 : jsp 에서 post 방식으로 ajax 처리하려고 했는데 해당 오류가 발생했다.원인 : post 방식으로 데이터를 요청할 때 헤더가 있어야 하는데 헤더를 안적었다.해결 : ajax 내 아래구문을 추가하니 해결됨!123456....headers : { "Accept" : "application/json", "Content-Type" : "application/json"},....Colored by Color Scriptercs 2018. 7. 17.
[jQuery] bootstrap.min.js:6 Uncaught Error: Bootstrap's JavaScript requires jQuery bootstrap.min.js:6 Uncaught Error: Bootstrap's JavaScript requires jQuery 원인 : 부트스트랩이 자바스크립트 기반이라 CDN 선언시 jQuery를 먼저 선언해줘야 하는데, Bootstrap CDN을 먼저 선언해서 에러발생.해결 : CDN 순서를 jQuery->Bootstrap 순으로 하면 된다 ~~~ 2018. 7. 9.
some characters cannot be mapped using "ISO-8859-1" character encoding some characters cannot be mapped using "ISO-8859-1" character encoding.Either change the encoding or remove the characters which are not supportedby the "ISO-8859-1" character encoding. 개요 : 다른페이지의 소스를 가져와서 이클립스에 붙여넣기를 했는데 해당 오류 발생. 원인 : 이클립스에서 사용하는 기본 문자셋이 ISO-8859-1 이기 때문에 발생. 해결 : 작업하던 파일은 JSP 파일이라 최상단에 아래 태그를 설정하니 문제 해결1cs 2018. 7. 6.
The server time zone value '´???¹?±¹ ???ؽ?' is unrecognized or represents more than one time zone java.sql.SQLException: The server time zone value '´???¹?±¹ ???ؽ?' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.Caused by: com.mysql.cj.exceptions.InvalidConnectionAttributeException: The server time zone val.. 2018. 7. 3.
Establishing SSL connection without server's identity verification is not recommended Tue Jul 03 17:21:16 KST 2018 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitl.. 2018. 7. 3.
More than one file was found with OS independent path 'META-INF/DEPENDENCIES' More than one file was found with OS independent path 'META-INF/DEPENDENCIES' More than one file was found with OS independent path 'META-INF/ASL2.0' 원인 : 안드로이드 자체 프레임워크 API와 내가 넣어준 서드파티 라이브러리 프레임워크 API와의 충돌이 나기 때문 해결 : build.gradle 파일에서 buildTypes 바로 밑에 아래 코드를 넣어주면 해결됨. packagingOptions { exclude 'META-INF/DEPENDENCIES' exclude 'META-INF/ASL2.0' } 덧, 예전 안드로이드 버전에서는 'META-INF/LICENSE' 까지 에러가 났었는.. 2018. 6. 14.