본문 바로가기

De2o freelancer (OCR)

(19)
thymeleaf 조건 처리 True False True False th:if와 th:unless로 구분 가능하고 banner.bannerUseYn.equals() 와 같이 값의 비교 수행가능.
데이터 테이블 thead-dark dataTable 적용 상태에서 배너 ID 등록자ID 변경자ID 배너 명 사용 여부 중요한것은 td가 아닌 th를 사용해야 함.
SpringBoot 세션 유지시간 Configure 보호되어 있는 글입니다.
Input date type thymeleaf th:value => 값 th:field => 보여지는 텍스트
Merge conflict 해결 방법 보호되어 있는 글입니다.
고정 Sidebar CSS /* The sidebar menu */ .sidenav { height: 100%; /* Full-height: remove this if you want "auto" height */ width: 160px; /* Set the width of the sidebar */ position: fixed; /* Fixed Sidebar (stay in place on scroll) */ z-index: 1; /* Stay on top */ top: 0; /* Stay at the top */ left: 0; background-color: #111; /* Black */ overflow-x: hidden; /* Disable horizontal scroll */ padding-top: 20px; }..
Java HttpURLConnection Ajax 대신 Java에서 사용할 수 있는 방법 URL url = new URL("http://localhost:5000/test"); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); // 리퀘스트 메소드를 POST로 설정 conn.setRequestMethod("POST"); // 연결된 connection 에서 출력도 하도록 설정 conn.setDoOutput(true); // 요청 파라미터 출력 // - 파라미터는 쿼리 문자열의 형식으로 지정 (ex) 이름=값&이름=값 형식&... // - 파라미터의 값으로 한국어 등을 송신하는 경우는 URL 인코딩을 해야 함. try (OutputStream out = conn.getOutpu..
Korean Word2Vec 모델 & 테스트 보호되어 있는 글입니다.