본문 바로가기

전체 글

(167)
Azure Media Services Explorer 설치 및 사용법 Azure Portal 웹 화면에서는 Azure Media Services에 등록된 자산(Assets) 정보와 연결된 Blob Stroage를 한눈에 보기 쉽지 않게 되어 있다. 전용툴 - Azure Media Services Explorer 를 사용하면 상세한 정보를 손쉽게 확인할 수 있어 설치해서 사용하는 것을 권장한다. GitHub에 소스 공개 및 설치방법등 자세하게 설명되어 있다. https://github.com/Azure/Azure-Media-Services-Explorer GitHub - Azure/Azure-Media-Services-Explorer: Azure Media Services Explorer Tool Azure Media Services Explorer Tool. Contrib..
[AWS] S3 퍼블릭액세스 Access Denied 해결방법 S3를 이용하여 퍼블릭엑세스 설정 후 이미지파일을 브라우저로 접속시 Access Denied 발생 해결방안은 버킷 정책에 arn명만 Resource 속성에 입력하는 것이 아니라 추가로 arn명/* 구문을 추가해야 해결된다. 해당버킷 > 권한 탭 > 버킷정책 > 편집 - Resource 속성 추가 { "Version": "2012-10-17", "Statement": [ { "Sid": "Statement1", "Effect": "Allow", "Principal": "*", "Action": "s3:*", "Resource": [ "arn:aws:s3:::wyleedp", "arn:aws:s3:::wyleedp/*" ] } ] } 다시 접속하면 정상적으로 이미지가 표시된다.
[AWS] 프론티어 가입 AWS 프론티어 가입 - 해외결제가 가능한 신용카드만 있으면 쉽게 가입이 가능하다. 중요한 것은 1년동안 무료혜택이 가능하나 요금이 부과되지 않게 안내페이지를 확인해 봐야한다. - https://repost.aws/ko/knowledge-center/free-tier-charges AWS 프리 티어 사용 시 요금 청구 방지 AWS 서비스를 테스트하기 위해 AWS 프리 티어를 사용하고 있는데, 사용하는 모든 리소스가 AWS 프리 티어에 포함되는지 확인하고 싶습니다. repost.aws
[STS] mybatis config 파일 밸리데이션 제외방법 mybatis 를 이용하여 프로젝트 수행시 mybatis 설정파일 관련해서 Problems View 또는 Maker View에서 XML Element type 에러가 계속 발생하여 신경이 쓰인다. (mybatis 작동은 문제없이 잘된다.) Window > Preferences > XML (Wild Web Developer) > Validation & Resoulution > Enable validation 체크해제
[SpringBoot] No command found for '--spring.output.ansi.enabled=always' 에러메세지 표시 후 구동실패 org.springframework.shell.CommandNotFound: No command found for '--spring.output.ansi.enabled=always' 메세지 표시 후 SpringBoot Application 구동실패 [2024-01-18T10:31:11.133+09:00 WARN --- [ restartedMain] org.jline : Unable to create a system terminal, creating a dumb terminal (enable debug logging for more information) [2024-01-18T10:31:11.367+09:00 INFO --- [ restartedMain] o.s.b.a.e.web.EndpointLinksR..
[Swing] 윈도우 탐색기 또는 커맨드(cmd.exe) 실행하는 방법 JAVA/Swing 환경에서 윈도우 탐색기 또는 커맨드창을 실행하면 유용할 것 같아 devcode-stuio JavaProperties 내용을 조회하는 기능에 적용하였다. devcode-studio - https://github.com/wyleedp/devcode/tree/develop/devcode-studio 윈도우 파일탐색기 명령어 # C:\Windows\explorer.exe /e/root/select, C:\Windows\explorer.exe /e/root/select,c:\Windows 윈도우 커맨드창 실행 명령어 # C:\Windows\system32\cmd.exe /C start "" /D "" C:\Windows\system32\cmd.exe /C start "C:\Users\wylee..
[maven] package 수행시 Fatal error compiling 에러발생 파이어볼(https://github.com/joosing/fireball)이라는 오픈소스를 실행하려고 하다 mvn clean package 시 에러발생 [INFO] Compiling 98 source files to C:\Users\wylee\GitHub-SourceTest\fireball\target\classes [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 2.027 s [INFO] Finis..
[Swing] 어플리케이션 에러발생 후 cversions.2.db 파일생성이슈 캐쉬파일이 C:\ProgramData\Microsoft\Windows\Caches 에 생성이 되어야 하는데 알 수 없는 이유로 현재 폴더에 %SystemDrive% 폴더명으로 생성 후 캐쉬파일이 생성된 것으로 보인다. 윈도우 커맨드 창에서 set 명령어로 확인해 보면 SystemDrive는 C: 로 설정되어 있다. 해결방법 %SystemDrive% 폴더를 삭제하면 해결된다. (아주 쉽다.)
안드로이드 스튜디오 설치시 Intel® HAXM installation failed 발생 안드로이드 스튜디오 설치시 Intel® HAXM installation failed 발생 환경정보 윈도우10 안드로이드 스튜디오 2022.3.1 Patch 3 Parsing C:\Users\wylee\AppData\Local\Android\Sdk\sources\android-34\package.xml Parsing C:\Users\wylee\AppData\Local\Android\Sdk\system-images\android-34\google_apis\x86_64\package.xml Android SDK is up to date. Running Intel® HAXM installer Intel HAXM installation failed! For more details, please check the ..
Apache POI를 이용한 워드파일(.docx) 생성방법 실제 프로젝트를 진행하다 보면 MS워드파일을 생성해야 하는 경우가 발생한다. 이때 사용하는 라이브러리가 Apache POI 이며 2023년 11월 7일 기준으로 최신버전은 5.2.4 버전이다. Apache POI - https://poi.apache.org/