Seemingly Online
close
프로필 배경
프로필 로고

Seemingly Online

  • 카테고리 (566)
    • Language (250)
      • 알고리즘 (100)
      • Java (144)
      • python (2)
      • Kotlin (4)
    • WEB (139)
      • Spring (23)
      • Spring Security (3)
      • Next.js (3)
      • TypeScript (3)
      • JavaScript (45)
      • jQuery (7)
      • CSS (25)
      • XML (3)
      • Maven (1)
      • Gradle (1)
      • JSP (1)
      • Thymeleaf (10)
      • HTML (11)
      • MyBatis (1)
      • JPA (2)
    • App (44)
      • Flutter (33)
      • Dart (4)
      • Android (2)
      • IOS (3)
      • Firebase (2)
    • Git (6)
      • GitHub (6)
    • AWS (15)
      • SCT (2)
      • Amazon Aurora (1)
      • S3 (2)
      • EventBridge (1)
      • EC2 (7)
      • EFS (1)
    • DataBase (43)
      • MySQL (19)
      • Oracle SQL (19)
      • Postgre-SQL (5)
    • OS (32)
      • Linux (27)
      • Windows (1)
      • Mac (4)
    • Tool (15)
      • DocKer (6)
      • Intellij (7)
      • VScode (2)
    • IT (17)
      • Developer-etc (13)
      • 개발상식 (4)
    • CodePen (2)
      • 캐러셀 (2)
  • 홈
  • 방명록
intelliJ 윈도우에서 콘솔 컬러 하얀색으로만 나올때 [log4j2 사용시]

intelliJ 윈도우에서 콘솔 컬러 하얀색으로만 나올때 [log4j2 사용시]

2025-03-181. 방법 기본적으로 log4j2.xml에서 PatternLayout을 사용하여 로그의 색상을 지정할 수 있습니다. 하지만 일부 버전(특히 2.10.0 이상)에서는 ANSI 색상이 기본적으로 비활성화되어 있어, 설정이 적용되지 않고 단순한 흰색 텍스트만 출력되는 문제가 발생할 수 있습니다. PatternLayout에 disableAnsi="false" 옵션을 추가합니다.일부 버전에서는 disableAnsi 기본값이 true로 설정되어 있어 ANSI 색상이 적용되지 않습니다.따라서, disableAnsi="false"를 명시적으로 추가하면 색상이 정상적으로 표시됩니다.Log4j2 설정 파일 (log4j2.xml) 참고 ..

  • format_list_bulleted Tool/Intellij
  • · 2025. 3. 18.
  • textsms
firebase_database: Lexical or Preprocessor Issue (Xcode): Include of non-modular header inside framework module 해결 방법

firebase_database: Lexical or Preprocessor Issue (Xcode): Include of non-modular header inside framework module 해결 방법

2025-02-20 1. 방법 Xcode => Runner => Build Settings and put "Allow Non-modular Includes In Framework Modules" to "yes" Xcode 상의 위의 위치로 이동해 아래 설정값을 Yes 로 바꿔주면 해결 된다. 메인 이미지 출처 : 사진: Unsplash의Josh Hild

  • format_list_bulleted App/IOS
  • · 2025. 2. 20.
  • textsms
Postgre sql 시퀀스 값을 수동으로 수정 방법 (auto increment 충돌 방지)

Postgre sql 시퀀스 값을 수동으로 수정 방법 (auto increment 충돌 방지)

2025-02-171. 방법 //기본키 설정된 시퀀스 명확인SELECT pg_get_serial_sequence('test_schema.tb_test', 'test_id');//시퀀스 현재 테이블에서 사용중인 맥스값으로 변경SELECT setval( 'test_schema.tb_test_test_id_seq', (SELECT COALESCE(MAX(test_id), 1) FROM test_schema.tb_test));// 시퀀스 맥스값 확인SELECT last_value FROM test_schema.tb_test_test_id_seq;메인 이미지 출처 : 사진: Unsplash의Vadim Sadovski

  • format_list_bulleted DataBase/Postgre-SQL
  • · 2025. 2. 17.
  • textsms
postgrsql earth_distance 설치 방법

postgrsql earth_distance 설치 방법

2025-02-101.  확장 프로그램 설치 -- 15버전일 경우 아래 다른 버전일 경우 해당 숫자만 변경yum install postgresql15-contrib2. earth_distance 확장  # earth_distance 관련 라이브러리를 사용해야 하는 DB -> 스키마로 이동한 이후에 아래 명령어 사용 create extension if not exists cube;create extension if not exists earthdistance;메인 이미지 출처 : 사진: Unsplash의Daniel Boberg

  • format_list_bulleted DataBase/Postgre-SQL
  • · 2025. 2. 10.
  • textsms
s3 폴더 하위 객체 메타데이터 한번에 변경하는 방법

s3 폴더 하위 객체 메타데이터 한번에 변경하는 방법

2024-12-23 1. 명령어 S3 폴더의 하위 객체들의 메타데이터를 한 번에 수정하려면 --recursive 옵션을 사용하여 cp 명령어로 전체 폴더를 처리할 수 있습니다. 새 메타데이터를 적용하려면 --metadata-directive REPLACE를 설정해야 하며, 변경하려는 메타데이터와 함께 명령어를 실행하면 됩니다. aws s3 cp s3://test/images/imagesub/data/ s3://test/images/imagesub/data/ \ --recursive \ --metadata-directive REPLACE \ --cache-control "max-age=31536000, must-revalidate" \ --content-type "image/png" ..

  • format_list_bulleted AWS/S3
  • · 2024. 12. 23.
  • textsms
postgreSQL bigint vs int(8) 차이점

postgreSQL bigint vs int(8) 차이점

2024-12-11 테이블 생성 CREATE TABLE t ( c1 bigint, c2 int8 );여기서 c1은 BIGINT로 정의되고, c2는 INT8로 정의됩니다.이 두 타입은 동일한 데이터 타입을 참조하기 때문에 PostgreSQL은 둘을 같은 것으로 처리합니다.속성 조회 SELECT a.attname, t.typname FROM pg_class AS c JOIN pg_attribute AS a ON a.attrelid = c.oid JOIN pg_type AS t ON a.atttypid = t.oid WHERE c.relname = 't' AND a.attname IN ('c1', 'c2') ORDER BY 1; 이 쿼리는 테이블 t의 각 컬럼 이름(attname)과 데이터 타입 이름(typn..

  • format_list_bulleted DataBase/Postgre-SQL
  • · 2024. 12. 11.
  • textsms
  • navigate_before
  • 1
  • 2
  • 3
  • 4
  • ···
  • 95
  • navigate_next
공지사항
전체 카테고리
  • 카테고리 (566)
    • Language (250)
      • 알고리즘 (100)
      • Java (144)
      • python (2)
      • Kotlin (4)
    • WEB (139)
      • Spring (23)
      • Spring Security (3)
      • Next.js (3)
      • TypeScript (3)
      • JavaScript (45)
      • jQuery (7)
      • CSS (25)
      • XML (3)
      • Maven (1)
      • Gradle (1)
      • JSP (1)
      • Thymeleaf (10)
      • HTML (11)
      • MyBatis (1)
      • JPA (2)
    • App (44)
      • Flutter (33)
      • Dart (4)
      • Android (2)
      • IOS (3)
      • Firebase (2)
    • Git (6)
      • GitHub (6)
    • AWS (15)
      • SCT (2)
      • Amazon Aurora (1)
      • S3 (2)
      • EventBridge (1)
      • EC2 (7)
      • EFS (1)
    • DataBase (43)
      • MySQL (19)
      • Oracle SQL (19)
      • Postgre-SQL (5)
    • OS (32)
      • Linux (27)
      • Windows (1)
      • Mac (4)
    • Tool (15)
      • DocKer (6)
      • Intellij (7)
      • VScode (2)
    • IT (17)
      • Developer-etc (13)
      • 개발상식 (4)
    • CodePen (2)
      • 캐러셀 (2)
최근 글
인기 글
최근 댓글
태그
  • #백준
  • #자바기초
  • #Java8
  • #backjoon
  • #자바알고리즘
  • #자바
  • #BOJ
  • #자바공부
  • #Java
  • #백준알고리즘
전체 방문자
오늘
어제
전체
Copyright © 쭈미로운 생활 All rights reserved.
Designed by JJuum

티스토리툴바