본문 바로가기
반응형

분류 전체보기79

예제로 알아보는 Java Stream API Java의 Stream API는 데이터 처리를 간결하고 효율적으로 수행할 수 있는 강력한 도구입니다. 이 글에서는 Stream API의 주요 개념과 예제를 통해 이를 마스터하는 방법을 다룹니다. #1. 샘플데이터 생성BabyVOX클래스 정의BabyVOX클래스는 다음과 같은 필드를 포함합니다:id (Integer)name (String)position(String)instagramFollowers (Double)age (Integer)@AllArgsConstructor@Getter@ToStringstatic class BabyVOX { private int id; private String name; private String position; private double instagr.. 2025. 2. 7.
Spring Boot 3 + Spring Security 6 + JWT 인증 #1. 프로젝트 생성Intellij 의 New Spring Boot Project 생성, 혹은 start.spring.io 를 통해 신규 프로젝트를 생성합니다. Dependencies 설정은 아래와 같이 심플하게 시작합니다.  생성된 프로젝트에 추가로 JWT 관련 Dependencies를 추가 해줍니다.implementation 'io.jsonwebtoken:jjwt-api:0.12.6' runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.6' runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.6' 최종 의존성은 아래와 같습니다.dependencies { implementation 'org.springframework.boot:spring.. 2025. 2. 6.
if-else vs switch vs enum 처리 속도 비교 #1. if-else 샘플 코드배송방법과 수하물의 무게에 따라 요금을 계산하는 아래와 같은 코드를 샘플로 작성합니다.public static double calculateShippingCost(String shippingType, double weight) { if (shippingType.equals("STANDARD")) { return weight * 5.0; } else if (shippingType.equals("EXPRESS")) { return weight * 10.0; } else if (shippingType.equals("SAME_DAY")) { return weight * 20.0; } else if (shippingType... 2025. 2. 3.
[MariaDB] MariaDB 설치(Windows, ZIP) #1. 설치 파일 다운로드 Windows 10 pc에 MariaDB를 설치해보자. 우선 아래 URL로 접속하여 설치파일을 다운 받는다. https://mariadb.org/download Download MariaDB Server - MariaDB.org REST API Release Schedule Reporting Bugs … Continue reading "Download MariaDB Server" mariadb.org MariaDB Server Version 11번대를 선택하면 아래와 같이 경고메시지가 나타난다. 결국 10.11 버전이 long-term release라는 소리. This is a short term release which is maintained for one year only.. 2023. 12. 26.
[Wiki] Dokuwiki 설치(Windows Server 2022, Apache, PHP) #1. 설치 파일 다운로드 여러 종류의 self-hosted wiki툴이 있지만, dokuwiki를 선택한 이유는 1. 설치 서버가 windows - Linux 였다면 xWiki나 mattermost를 선택하지 않았을까? 2. 사내에서 이미 dokuwiki를 사용하고 있었음 - 이 이유가 가장 크다. 기존 wiki 문서를 보존해야 했기에 이제 아래의 파일들을 다운로드 받는다. 1. dokuwiki Download DokuWiki Download DokuWiki Here you can download the latest DokuWiki-Version. Either just click "Download" or customize the download to your likings with the options.. 2023. 12. 7.
Cannot open Eclipse Marketplace #1. 오류 발생 사내 이클립스에서 마켓플레이스 접속 시 아래와 같이 Certification 오류가 나는 경우가 있다. PKIX path building failed 아마도 문제는 사내 인증서 때문일텐데, 사용하는 jdk에는 사내 인증서가 추가되어 있고 intellij 에도 비슷한 상황이 있었기 때문에 이번에도 이클립스 어딘가에 Cert를 추가해 주면 될 것처럼 보인다. #2. 오류 해결 eclipse 홈 > plugins > org.eclipse.justj.openjdk.hotspot.jre.full.XXXXXXXX > jre/lib/security/cacerts 에 keytool을 사용하여 인증서를 추가한다. keytool -importcert -keystore C:\02.DEV\tools\ecli.. 2023. 9. 22.
반응형