분류 전체보기
-
Unknown type 245 sent by the server. Please send a report to the developers개발로그 2022. 4. 22. 14:16
JSON 필드가 있는 mysql 테이블과 함께 이전 버전의 PHP(5.5.38)를 사용할 때 이 경고가 발생하는 것을 관찰했습니다.JSON 필드를 좋은 이전 TEXT로 변경하면 문제가 해결됩니다. 출처:https://stackoverflow.com/questions/39117340/pdostatementexecute-unknown-type-245-sent-by-the-server-please-send-a-repo PDOStatement::execute(): Unknown type 245 sent by the server. Please send a report to the developers When I query for the JSON columns in MySQL 5.7.14 and laravel 5...
-
Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6개발로그 2022. 4. 12. 10:54
eclipse에서 maven update시 아래 오류 발생시 Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6 .m2 파일에 있는 데이터 모두 삭제 후 다시 maven update
-
AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name개발로그 2022. 3. 28. 10:37
1.로컬 웹에서 permission denied오류 확인 2. xampp > error_log 확인 AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name 3.해결 ~xampp\apache\conf\extra\httpd-ssl 파일 ServerName www.example.com:443 해당 라인 주석 처리하기 4.아파치 재실행
-
[spring boot] This connection is using TLSv1.1 which is now deprecated and will be removed in a future release of Connector/J.Spring boot 2021. 12. 22. 12:33
환경 mysql springboot 2.6.1 오류 This connection is using TLSv1.1 which is now deprecated and will be removed in a future release of Connector/J. 해결 application.properties에서 jdbc-url 에 useSSL=false 추가 spring.datasource.jdbc-url: {jdbc-url}?useSSL=false
-
프로젝트 환경설정강의/실전! 스프링 부트와 JPA 활용1 2021. 12. 20. 20:24
1.spring initializr로 springboot 프로젝트 생성 1-1) jdk11 , Gradle, 패키징 - Jar 선택 2.spring boot 버전 2.6.1 및 dependency 선택 후 프로젝트 생성 생성후 build.gradle에 Junit4 dependency 추가 //JUnit4 추가 (미 추가시 Junit5로 동작) testImplementation("org.junit.vintage:junit-vintage-engine") { exclude group: "org.hamcrest", module: "hamcrest-core" } +devtool 추가 developmentOnly 'org.springframework.boot:spring-boot-devtools' 3. 롬복 적용하..
-