일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- git
- maven
- Python
- MSSQL
- SpringBoot
- IntelliJ
- Exception
- 설정
- Open Source
- Eclipse
- PostgreSQL
- JDBC
- MySQL
- AJAX
- oracle
- myBatis
- ubuntu
- Docker
- 오픈소스
- jpa
- Spring Boot
- STS
- Core Java
- Tomcat
- Thymeleaf
- error
- spring
- 문서
- JavaScript
- Source
- Today
- Total
목록java (3)
헤르메스 LIFE
https://tomcat.apache.org/whichversion.html 2023년 1월 기준 https://hermeslog.tistory.com/657 [JAVA] OpenJDK 종류 2019년 9월 14일 Oracle에서 새로운 라이센스를 발표하였습니다. https://www.oracle.com/downloads/licenses/no-fee-license.html Oracle No-Fee Terms and Conditions (NFTC) License Agreement Your use of this Program is governed by the No-Fee Te hermeslog.tistory.com https://hermeslog.tistory.com/658 [Spring & Spring ..
Java Core Source를 테스트하려고 개발환경을 구축해봤는데 Lib 추가하는게 괴롭네요. 그래서 Maven 이나 Gradle로 Dependency 되는 환경을 찾아봤더니 있네요. ㅎㅎ 출처 : https://jiurinie.tistory.com/123 이클립스에서 Gralde Project 생성하기(feat. java-library) 이클립스에서 Gralde Project 생성하기 Gralde Project를 생성하려면 우선 Gradle이 설치되어 있어야 한다. Eclipse Marketplace에서 Buildship Gradle Intergration 3.0을 설치하자. installed 표시가 아니라면 설치가 되어 jiurinie.tistory.com 개발환경 STS 4.17.2.RELEASE..
일반적으로 List 표현을 많이 사용하게 되는데.. List 안에 Map이 있는 경우, 데이터를 찾기가 쉽지 않습니다. 결국은 for loop 를 이용하는 수 밖에.. package test.sample.string; import java.util.ArrayList; import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Optional; public class RamdaSample { public static void main( String[] args ) { List list = new ArrayList(); Map map = null; map = ne..