Cokes Blog
GitHub 포트폴리오
close
프로필 배경
프로필 로고

Cokes Blog

  • 분류 전체보기 (182)
    • 일상 (1)
    • 파이썬 (33)
    • Back-End (58)
      • JAVA (10)
      • Spring(Boot) (42)
      • NestJS (1)
      • Django, FastAPI (1)
      • PHP (4)
    • Front-End (15)
      • HTML-CSS (2)
      • JavaScript (4)
      • Vue.js (8)
      • TypeScript (0)
      • React (1)
    • DB (1)
    • 알고리즘, 코딩 문제풀기 (38)
    • DevOps (12)
      • Jenkins (5)
      • Docker-Kubernetes (3)
      • AWS (4)
    • Build tools (2)
      • Gradle-Maven (2)
    • Linux (3)
    • Git (2)
    • 자격증 (1)
    • 기타 (8)
    • 번외 Project (7)

    도커 nginx, spring boot 프로젝트 연동 배포 해보기

    docker pull nginxnginx 이미지 다운로드 docker run -d --name nginx-server -p 80:80 --restart nginxnginx 이미지 실행합니다. docker cp nginx-server:/etc/nginx/nginx.conf /home/dev/nginx/nginx.confdocker cp nginx-server:/etc/nginx/conf.d/default.conf /home/dev/nginx/conf.d/default.confnginx.conf, default.conf 파일 작성이 귀찮기 때문에 이미 만들어진 파일을 원하는 경로로 복사합니다. 저는 /home/dev/nginx/ 로 복사했습니다. docker stop nginx-serverdocker rm ..

    • format_list_bulleted DevOps/Docker-Kubernetes
    • · 2025. 3. 29.
    • textsms

    도커 컨테이너로 사용하지 않는 이미지 전체 삭제

    컨테이너로 사용하지 않는 이미지 전체 삭제docker image prune -a 중지된 컨테이너 전체 삭제docker container prune

    • format_list_bulleted DevOps/Docker-Kubernetes
    • · 2025. 3. 29.
    • textsms
    백준 1075번: 나누기 (브론즈2) 문제 파이썬

    백준 1075번: 나누기 (브론즈2) 문제 파이썬

    https://www.acmicpc.net/problem/1075    N = int(input()) # int형으로 입력받습니다. F = int(input()) # int형으로 입력받습니다.if N >= 100 and N

    • format_list_bulleted 알고리즘, 코딩 문제풀기
    • · 2025. 3. 28.
    • textsms

    공부 리스트

    자바- 21- 이펙티브- 일급 컬렉션 -> https://jojoldu.tistory.com/412 일급 컬렉션 (First Class Collection)의 소개와 써야할 이유최근 클린코드 & TDD 강의의 리뷰어로 참가하면서 많은 분들이 공통적으로 어려워 하는 개념 한가지를 발견하게 되었습니다. 바로 일급 컬렉션인데요. 왜 객체지향적으로, 리팩토링하기 쉬운 코jojoldu.tistory.com향로님 글읽기-> @Build, @Singular 빌드 패턴 코틀린 스프링(boot)- 스프링6- 부트 3JPA - data jpa, query dsl- 영속성 컨텍스트- EntityManagerFactory- EntityManager- JPQL- JPA N + 1 -> fetch join, @EntityGra..

    • format_list_bulleted 일상
    • · 2025. 3. 25.
    • textsms

    Hello, World! 홈 테스트 중 발생한 문제

    발생한 문제. mybatis 추가 한 후 mapper 를 찾을 수 없다는 오류@AutoConfigureMybatis 추가**@AutoConfigureMybatis**는 Spring Boot와 MyBatis를 통합하여 테스트를 수행할 때 MyBatis 관련 자동 구성을 활성화하는 데 사용되는 어노테이션입니다. 이 어노테이션은 일반적으로 @WebMvcTest 또는 다른 Spring Boot 테스트 어노테이션과 함께 사용되며, MyBatis의 SqlSessionFactory, SqlSessionTemplate, 그리고 Mapper 인터페이스를 테스트 컨텍스트에 로드할 수 있도록 설정합니다.@WebMvcTest(MainController.class)@AutoConfigureMybatis@ActiveProfile..

    • format_list_bulleted Back-End/Spring(Boot)
    • · 2025. 3. 20.
    • textsms
    git action CI/CD, deploy.yml 작성해보기

    git action CI/CD, deploy.yml 작성해보기

    경로프로젝트 .github/workflows/deploy.yml name: Docker Build and Deploy via SSHon: push: branches: - main # 배포할 브랜치 지정jobs: build-and-push: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 - name: Set up JDK 17 uses: actions/setup-java@v4 with: java-version: '17' distribution: 'temurin' - name:..

    • format_list_bulleted Git
    • · 2025. 3. 17.
    • textsms

    Could not set unknown property 'mainClassName' for task ':bootJar' error

    bootJar { mainClassName = 'com.example.demo.DemoApplication'}mainClassName -> mainClass 로 변경Spring Boot 2.4 이상에서는 mainClassName이 deprecated되었고, 대신 mainClass를 사용합니다.bootJar { mainClass = 'com.example.demo.DemoApplication'}

    • format_list_bulleted Build tools/Gradle-Maven
    • · 2025. 3. 17.
    • textsms
    18108번 문제 1998년생인 내가 태국에서는 2541년생?! (파이썬)

    18108번 문제 1998년생인 내가 태국에서는 2541년생?! (파이썬)

    https://www.acmicpc.net/problem/18108  a = input()print(int(a) - 543) import sysa = sys.stdin.readline()print(int(a) - 543)

    • format_list_bulleted 알고리즘, 코딩 문제풀기
    • · 2025. 3. 11.
    • textsms
    • navigate_before
    • 1
    • 2
    • 3
    • 4
    • 5
    • ···
    • 23
    • navigate_next
      Cokes Blog
      호두와 녹두
      반응형
      전체 카테고리
      • 분류 전체보기 (182)
        • 일상 (1)
        • 파이썬 (33)
        • Back-End (58)
          • JAVA (10)
          • Spring(Boot) (42)
          • NestJS (1)
          • Django, FastAPI (1)
          • PHP (4)
        • Front-End (15)
          • HTML-CSS (2)
          • JavaScript (4)
          • Vue.js (8)
          • TypeScript (0)
          • React (1)
        • DB (1)
        • 알고리즘, 코딩 문제풀기 (38)
        • DevOps (12)
          • Jenkins (5)
          • Docker-Kubernetes (3)
          • AWS (4)
        • Build tools (2)
          • Gradle-Maven (2)
        • Linux (3)
        • Git (2)
        • 자격증 (1)
        • 기타 (8)
        • 번외 Project (7)
      최근 글
      인기 글
      최근 댓글
      태그
      • #Java
      • #백준
      • #코딩테스트
      • #알고리즘
      • #pyqt
      • #자바
      • #문자열
      • #python
      • #파이썬
      • #코딩
      전체 방문자
      오늘
      어제
      전체
      Copyright © 쭈미로운 생활 All rights reserved.
      Designed by JJuum

      티스토리툴바