일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
- Python
- JDBC
- AJAX
- Docker
- Open Source
- Exception
- myBatis
- Tomcat
- spring
- oracle
- error
- Eclipse
- IntelliJ
- maven
- Thymeleaf
- MySQL
- 오픈소스
- 문서
- jpa
- ubuntu
- git
- Source
- 설정
- Core Java
- Spring Boot
- STS
- SpringBoot
- MSSQL
- JavaScript
- PostgreSQL
- Today
- Total
목록hermeswing log (709)
헤르메스 LIFE
출처 : http://www.mysamplecode.com/2012/03/apache-commons-ftpclient-java-example_16.html package com.as400samplecode; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.OutputStream; import java.util.Properties; import org.apache.commons.net.ftp.FTPClient; import org.apache.commons.net.ftp.FTPFile; import org.apache.commons.net.ftp.FTPReply; public class GetMyFiles { s..
[참고 사이트] http://www.ietf.org/rfc/rfc0821.txt [SMTP 응답코드표] 211 : 시스템 상태 또는 시스템 도움말 답장 214 : 도움말 메시지 220 : 도메인 서비스가 준비됨 221 : 도메인 서비스가 전송 채널을 폐쇄하고 있음 250 : 요청된 우편행위 OK, 완료되었음 251 : 사용자가 Local이 아님 로 배달 354 : 우편입력을 시작함 : .로 종료됨 421 : 도메인 서비스가 수행되지 않음, 전송 채널을 폐쇄하고 있음 451 : 요청된 행위가 강제 종료되었음 : 처리중 오류 발생 452 : 요청된 행위가 이루어지지 않았음 : 시스템 저장 장치가 충분하지 않음 500 : 구문오류, 명령이 인식되지 않음 501 : 매개변수나 인수에서 구문오류 50..

개발환경 1. STS 버전 : 4.13.1 2. JDK 버전 : OpenJDK 11.0.14_9_x64 3. Tomcat 버전 : 9.0.56 4. Maven 버전 : 3.8.4 5. Spring 버전 : Spring Boot 2.6.3 6. Database : Docker 에 DB 설치 - primary - PostgreSQL 13.3 7. Spring Security : 5.6.1 8. lombok 9. Thymeleaf 3.0.14 Thymeleaf Layout Dialect 3.0.0 목표 Spring Boot 기반의 Thymeleaf 를 이용한 Layout Dialect 화면 개발 pom.xml 에 Thymeleaf Layout Dialect Dependency 추가합니다. org.springf..
layout:decorator 를 아무리 찾아봐도, 최근 소스를 참조해도.. 전부 layout:decorator 를 사용하더군요.. ^^;; layout:decorator -> layout:decorate 로 변경된 듯 합니다. 레이아웃을 사용해 페이지 구성하기! OKKY 의 Dierslair님, k011215님 감사합니다. https://okky.kr/article/1132029 OKKY | thymeleaf - layout:decorator 가 제대로 작동하지 않습니다. layout 폴더에 만들어둔 defaultLayout 만 따로 실행했을땐 분명 내부에 집어넣은 fragment 들도 다 잘 작동하는데, 이상하게 index2.html에서 layout:decorator layout/defaultLayo..
개발환경 1. STS 버전 : 4.13.1 2. JDK 버전 : OpenJDK 11.0.14_9_x64 3. Tomcat 버전 : 9.0.56 4. Maven 버전 : 3.8.4 5. Spring 버전 : Spring Boot 2.6.3 6. Database : Docker 에 DB 설치 - primary - PostgreSQL 13.3 7. Spring Security : 5.6.1 8. lombok 9. Thymeleaf 3.0.14 17:45:47.766 ERROR org.thymeleaf.TemplateEngine.process(1136) - [THYMELEAF][http-nio-9090-exec-7] Exception processing template "loginForm": Error reso..
개발환경 1. STS 버전 : 4.13.1 2. JDK 버전 : OpenJDK 11.0.14_9_x64 3. Tomcat 버전 : 9.0.56 4. Maven 버전 : 3.8.4 5. Spring 버전 : Spring Boot 2.6.3 6. Database : Docker 에 DB 설치 - primary - PostgreSQL 13.3 7. Spring Security : 5.6.1 8. lombok 9. Thymeleaf 3.0.14 Maven Dependency 추가 org.springframework.boot spring-boot-starter-thymeleaf application.yml spring: thymeleaf: cache: false # JSP 설정을 막음. # mvc: # view:..
개발환경 https://hermeslog.tistory.com/585 [Spring Boot] Spring Security #02 개발환경 1. STS 버전 : 4.13.1 2. JDK 버전 : OpenJDK 11.0.14_9_x64 3. Tomcat 버전 : 9.0.56 4. Maven 버전 : 3.8.4 5. Spring 버전 : Spring Boot 2.6.3 6. Database : Docker 에 DB 설치 - primary - Postgr.. hermeslog.tistory.com antMatchers에서 문자열 "/login.do", "/logout.do", "/swagger-ui/**", "/swagger-ui" 등의 목록이 하드코딩되어 있어서 한 곳으로 모았으면 해서 알아 봤습니다. Se..

개발환경JDK : 1.8Spring BootlombokThymeleafVue Cli : 2.9.6Vue.js : Version 2.xnode.js : 16.14.2npm : 8.5.0Database : PostgreSQL1. Spring Boot 환경설정application.yml# WAS server settingserver: port: 9090 servlet: context-path: / encoding: charset: UTF-8 enabled: true force: true session: timeout: 3600 # 기본단위 : 초 tomcat: uri-encoding: ..

개발환경 1. STS 버전 : 4.13.1 2. JDK 버전 : OpenJDK 11.0.14_9_x64 3. Tomcat 버전 : 9.0.56 4. Maven 버전 : 3.8.4 5. Spring 버전 : Spring Boot 2.6.3 6. Database : Docker 에 DB 설치 - primary - PostgreSQL 13.3 7. Spring Security : 5.6.1 8. lombok 목표 1. Spring Boot 환경에서 Spring Security 기능을 추가하여 로그인 기능을 완성 2. 인프런의 최주호 강사님 스프링부트 시큐리티 & JWT 강의를 듣고, 그 내용을 구현 https://hermeslog.tistory.com/583?category=1078420 [Spring Boo..
개발환경 1. STS 버전 : 4.13.1 2. JDK 버전 : OpenJDK 11.0.14_9_x64 3. Tomcat 버전 : 9.0.56 4. Maven 버전 : 3.8.4 5. Spring 버전 : Spring Boot 2.6.3 6. Database : Docker 에 DB 설치 - primary - PostgreSQL 13.3 7. Spring Security : 5.6.1 8. lombok 23:17:26.019 [http-nio-9090-exec-8] INFO c.s.s.c.auth.PrincipalDetailsService - userId :: 1 23:17:26.041 [http-nio-9090-exec-8] DEBUG org.hibernate.SQL - select user0_.id ..