2021.09.28 TIL

새롭게 배운 것 Done Spring Frameworks - RDB 접근 JDBC: 자바 어플리케이션은 JDBC API를 이용하여 데이터계층과 통신 JPA를 사용해야하는 이유 생산성 증진 SQL에 의존적인 개발에서 탈피하여, 객체중심으로 생산적인 개발이 가능하다....

MySQL 설치 및 초기 설정

MySQL 설치 Ubuntu 20.04 (lsb_release -a ubuntu 버전 확인 명령어) sudo apt-get update sudo apt-get install mysql-server iptable 실행되고 있다면 외부에서 접속할 수 있도록 mysql port(3306) 열어주기 sudo ufw allow...

Linux 디스크 용량이 부족할 때

Ubuntu Linux 디스크 용량 부족할 때 할 수 있는 방법들 참고:[ Linux ] 디스크 정리를 위한 명령어 참고:[Linux] 파일 삭제해도 용량이 늘어나지 않을때 (용량 부족 시) 참고:리눅스 서버 용량 확보...

SpringWebsocket 학습

Spring WebSocket 실습 참고: Intro to WebSockets with Spring Maven Dependencies <!--spring-websocket--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-websocket</artifactId> </dependency> <!--spring-messaging--> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-messaging</artifactId> <version>5.2.2.RELEASE</version> </dependency> <!--Jackson for json--> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.10.2</version> </dependency>...

DynamoDB 학습(1) - Docker, AWS cli

DynamoDB 학습(1) - Docker, AWS cli Docker 설치 Ubuntu 20.04.3 LTS 기준 참고: docker docs Uninstall old versions $ sudo apt-get remove docker docker-engine docker.io containerd runc Set up the...