본문 바로가기

개발19

JAVA 17~21 변경점 https://openjdk.org/projects/jdk/21/ JDK 21 JDK 21 This release is the Reference Implementation of version 21 of the Java SE Platform, as specified by JSR 396 in the Java Community Process. JDK 21 reached General Availability on 19 September 2023. Production-ready binaries under the GPL are avai openjdk.org JDK 21이 나옴에 따라 변경점에 대해서 알아보겠습니다. Java 18 JEP 400: UTF-8 by Default - Java APi의 Default Ch.. 2023. 10. 20.
WSL2 RockyLinux 8.7 설치하기 docker-desktop이 설치되어있는 환경에서 실행해야 합니다. $ docker run --name rocky-container rockylinux/rockylinux:8.7 $ docker container list -all | Select-String rocky-container 9eb162a9482b rockylinux/rockylinux:8.7 "/bin/bash" About a minute ago Exited (0) About a minute ago rocky-container $ docker export rocky-container -o rocky-container.tar $ wsl --import rocky-8 D:\rocky .\rocky-container.tar $ wsl -l -v .. 2023. 3. 17.
Spring Boot 3 RC1 Release 변경점 Spring Boot 3 RC1 Release - https://github.com/spring-projects/spring-boot/releases/tag/v3.0.0-RC1 큰 변경점 Java 17 + Java EE → Jakarta EE HttpServletRequest package 변경 필요 as-is: import javax.servlet.http.HttpServletRequest; to-be: import jakarta.servlet.http.HttpServletRequest; Gradle 7.3+ MVC의 변화 HTTP API 에러처리를 위한 RFC7807 Problem Details Standard 지원 https://docs.spring.io/spring-framework/docs/6... 2022. 11. 7.
Java 12-17 변경점 LTS Java 11 다음인 17이 발표 됨에 따라서 12~17까지의 변화를 나열해보려고 합니다. Java 12 JEP 325: Switch Expressions (Preview) - Switch Expression 변경에 대한 Preview String a = switch(obj) { case "AAA", "BBB", "CCC" -> "c"; default -> ""; }; Java 13 JEP 351: ZGC: Uncommit Unused Memory (Experimental) - 사용하지 않는 Heap Memory를 운영체제에 반환하도록 ZGC를 변경(실험단계) JEP 354: Switch Expressions (Second Preview) - Switch Expression 변경에 대한 두 번째 .. 2021. 10. 3.
Logback의 level TRACE DEBUG INFO WARN ERROR TRACE YES NO NO NO NO DEBUG YES YES NO NO NO INFO YES YES YES NO NO WARN YES YES YES YES NO ERROR YES YES YES YES YES 2020. 11. 15.
Spring Boot 2.4.0 Release 주요 변경 github.com/spring-projects/spring-boot/wiki/Spring-Boot-2.4-Release-Notes spring-projects/spring-boot Spring Boot. Contribute to spring-projects/spring-boot development by creating an account on GitHub. github.com Spring Boot 2.4.0이 Release 되었습니다. 1. Config File Processing application.properties 및 application.yml 파일을 처리하는 방식이 개선되었습니다. Multi-Document YAML 파일 사용시 '----' 구분자를 통해 Document를 구분하는데, 이 .. 2020. 11. 14.