본문 바로가기

분류 전체보기431

RequestMapping("/") vs RequestMapping("") 발단은 이렇다. 톡방에 RequestMapping의 질문이 올라왔다. 크게 고민해본적이 없어 갑자기 호기심이 생겼다. @RestController public class HelloController { @GetMapping("/") public String foo() { return "absolute"; } @GetMapping("") public String foo2() { return "empty"; } } Controller를 생성했다. http://localhost:8080으로 접근하면 어떤 것이 실행될까? 특별히 /를 붙이지 않았지만 @GetMapping("/")으로 접근이 되었다. @RestController public class HelloController { // @GetMapping(".. 2021. 10. 7.
자바 Hash Map 공부 https://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html HashMap (Java Platform SE 8 ) If the specified key is not already associated with a value (or is mapped to null), attempts to compute its value using the given mapping function and enters it into this map unless null. If the function returns null no mapping is recorded. If the function docs.oracle.com 해시맵 주석 Hash table based implem.. 2021. 10. 6.
자바 ArrayList 공부 https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html ArrayList (Java Platform SE 8 ) Resizable-array implementation of the List interface. Implements all optional list operations, and permits all elements, including null. In addition to implementing the List interface, this class provides methods to manipulate the size of the array that is docs.oracle.com Array List 주석 더보기 Resizabl.. 2021. 10. 5.
초보자를 위한 SQL 200제 https://www.aladin.co.kr/shop/wproduct.aspx?ItemId=240123978 초보자를 위한 SQL 200제 총 5개 파트와 200개의 예제로 구성되어 있다. 차근차근 예제를 통해 SQL 기초를 다지고, 직접 프로그램을 실행해봄으로써 SQL을 활용한 머신러닝 데이터 분석으로 Kaggle 상위권에 진입할 수 있도록 www.aladin.co.kr 책의 목표는 SQL 예제를 통해서 데이터 분석하는 단계로 나아가는 것이 목표이다. 개발에 필요한 부분이 난이도 초급~중급 부분에 많다. 중급 이상에서 PL-SQL 을 사용하는 부분부터는 데이터 분석의 영역으로 넘어간다. 책 전반적으로 Oracle의 기능들을 잘 사용하는 예제들이 많다. 오라클은 잘 쓰면 좋은게 많다는 것을 새삼 다시 느.. 2021. 9. 25.