분류 전체보기 403

[바이오쇼크 인피니트] 자막 크기,시야각(FOV) 변경하기

[자막 크기 조절]1. 내 PC\문서\My Games\BioShock Infinite\XGame\Config 폴더로 이동2. XUI.ini 파일을 메모장으로 열어서MaxResolutionUpScale항목을 찾음3. MaxResolutionUpScale=0.0 으로 기본값이 되어있는데0.0~1.0까지의 값으로 변경후 저장후 게임을 켜보고본인의 모니터에 제일 잘맞는 값을 찾으면 됨ex)108cm(43인치)/와이드(16:9)/3840 x 2160(4K UHD) 모니터의 경우 1.0이 적합 했음[시야각(FOV) 조절]1. 내 PC\문서\My Games\BioShock Infinite\XGame\Config 폴더로 이동2. XUserOptions.ini 파일을 메모장으로 열어서MaxUserFOVOffsetPerc..

Hobby/Game 2024.08.21

[Selenium] java.io.OutputStream com.google.common.io.ByteStreams.nullOutputStream()

[ 에러 발생 상황 ] 01. org.openqa.selenium.WebDriver를 이용하여 new ChromeDriver();코드 수행시 에러 발생 WebDriver webDriver = new ChromeDriver(); // 해당 코드 수행시 // 에러 발생 java.lang.NoSuchMethodError: 'java.io.OutputStream com.google.common.io.ByteStreams.nullOutputStream()' [ Solution ] 01. 해당 라이브러리를 추가해준뒤 프로젝트를 리빌드 해준다 implementation group: 'com.google.api-client', name: 'google-api-client', version: '2.2.0'

Dev_Log 2023.07.03

[MS SQL] 드라이버가 SSL(Secure Sockets Layer) 암호화를 사용하여 SQL Sever로 보안 연결을 설정할 수 없습니다.오류: "PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException:unable to find valid cer..

[ 에러 발생 상황 ] 01. MS SQL 2008을 마이바티스와 연동후 프로젝트 실행하면 에러가 발생 com.microsoft.sqlserver.jdbc.SQLServerException: 드라이버가 SSL(Secure Sockets Layer) 암호화를 사용하여 SQL Sever로 보안 연결을 설정할 수 없습니다. 오류: "PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target". ClientConnectionId:154ff66f-f441-4885-a1a9-3b76e9182e5c [ Solutio..

Dev_Log 2023.03.28

[SpringQuartz] FOR UPDATE 절은 DECLARE CURSOR에서만 사용할 수 있습니다.

[ 에러 발생 상황 ] 01. SpringQuartz를 MS-SQL과 연동하기위해 세팅후 프로젝트 구동 02. 아래 에러 발생 org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2 org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@1d204519 jd..

Dev_Log 2023.03.06