Programming326 [Tomcat 9.0 Windows] HTTPS 설정 시에 Http11AprProtocol 이 가용하지 않은 APR/native 라이브러리를 요구합니다. 오류 해결 방안 [Tomcat 9.0 Windows] HTTPS 설정 시에 Http11AprProtocol 이 가용하지 않은 APR/native 라이브러리를 요구합니다. 오류 해결 방안 Server.xml 에서 HTTPS 로 직접 인증서를 생성하여 Tomcat 실행 시에 아래와 같은 오류가 발생 하면서 동작 하지 않았습니다. maxThreads="150" SSLEnabled="true" scheme="https" secure="true" keystoreFile="D:/openssl/bin/keystore" keystorePass="password" clientAuth="false" .. 2024. 12. 17. [React] does not exist on type 'JSX.IntrinsicElements' 오류 발생 시에 해결 방안 $ yarn add react-router-dom@6.3.0 명령어로 BrowserRouter 구성 요소를 설치 하여도 오류는 해결되지 않았습니다, export 시키는 const 함수의 시작이 소문자가 아닌 대문자로 수정 하니 해결 되었습니다 ,,, 2024. 12. 14. [C++/winrt] Windows::Data::Pdf 이용하여 PDF 파일을 Floyd-Steinberg Dithering 처리 후 LibTiff를 이용하여 MultiTiFF로 저장 예제 입니다. 품질 개선 방안을 계속 모색 해보고 있습니다...! Console 프로그램으로 실행 예시는 아래와 같습니다.#> WindowDataPdf.exe "1" "C:\Users\user\Downloads\test.pdf" "C:\Users\user\Downloads" #include "pch.h"#include #include #include #include #include namespace winrt { using namespace Windows::Foundation; using namespace Windows::Storage; using namespace Windows::Data::Pdf; using namespace Windows::Graphics::Imaging;}winrt::Win.. 2024. 11. 20. Dialog 생성 AfxBeginThread 이용 Thread 호출 예제 입니다. Thread는 계속 반복 하지 않고 , OnInitDialog가 호출 된 후 한번 만 실행되도록 테스트 하였습니다. ex) CPrinterSetDlg.hpublic: CWinThread* m_pThread; static UINT ThreadFunction(LPVOID _mothod); virtual BOOL OnInitDialog(); ex) CPrinterSetDlg.h/// /// AfxBeginThread를 이용하여 Thread를 생성 하고 호출 합니다./// /// BOOL CPrinterSetDlg::OnInitDialog(){ CDialogEx::OnInitDialog(); // TODO: 여기에 추가 초기화 작업을 추가합니다. m_pThread = AfxBeginThread(ThreadF.. 2024. 11. 9. 이전 1 ··· 4 5 6 7 8 9 10 ··· 82 다음