본문 바로가기
728x90
반응형

분류 전체보기59

폐쇄망 환경에서 웹만들기(spring boot, gradle, nuxt, nexus3) https://github.com/jonghyeok34/pledge-project-summary 2021. 9. 6.
java exception 관리 - handling & safe 1. Checked exception & Unchecked Exception Checked exception Unchecked Exception - 실행 전에 예외 처리 해야함. (컴파일 단계에서 확인됨 - rollback이 되지 않음. - Runtime Exception을 제외한 모든 예외) - IOException, SQLException 등 - 명시적 처리를 강제하지 않음(실행 단계에서 확인됨) - rollback 처리됨. - RuntimeException 하위 예외 - NullPointerException, IllegalArgumentException, INdexOutofBoundException, SystemException Java 예외(Exception) 처리에 대한 작은 생각 (nextre.. 2021. 8. 18.
Websocket vs stomp Websocket - 클라이언트와 서버간 동기적 양방향이 통신을 할 수 있는 특정 기술. TCP와 비슷하나, HTTP connection을 업그레이드 한 프로토콜을 이용하며, 스트림을 이용하는 대신, 프레임을 이용해 통신한다. stomp - 클라이언트와 서버가 통신하는 프로토콜을 이용한다. STOMP It defines a protocol for clients and servers to communicate with messaging semantics. It does not define any implementation details, but rather addresses an easy-to-implement wire protocol for messaging integrations. It provides.. 2021. 7. 3.
docker compose로 DB 올리기(oracle, mysql, mongodb) 0. download docker https://docs.docker.com/docker-for-windows/install Redirecting… docs.docker.com 1. docker-compose.yaml version: "3.3" services: oracle: container_name: demo_oracle build: context: ./oracle/ dockerfile: Dockerfile image: demo/oracle-xe-11g:latest # environment: - ORACLE_ALLOW_REMOTE=true ports: - "1522:1521" mysql: container_name: demo_mysql command: --character-set-server=utf8.. 2021. 5. 28.
728x90