properties editor 설치
eclipse 설치한 파일 내부에 dropins 폴더안에 아래 jar 2개 적용 http://svn.osdn.net/svnroot/propedit/trunk/PropertiesEditorUpdateSite/eclipse/updates/plugins/jp.gr.java_conf.ussiy.app.propedit_6.0.5.jarhttp://svn.osdn.net/svnroot/propedit/trunk/PropertiesEditorUpdateSite/eclipse/updates/plugins/jp.gr.java_conf.ussiy.app.propedit.nl_6.0.0.jar
[ThymeLeaf] Spring Boot에 타임리프 추가하기
gradle 기준 – build.gradle에 하단 추가 application.properties에 하단 추가 기본 html 추가 /resources/templates/index.html Controller에 하단 내용 추가
gitlab 정리
New Directory 선택 name : 이소운 commit message : Add Test Target branch : leesowoon Start a new merge request with these changes :…
[리눅스] 자주쓰는 vi 명령어
– gg : 첫 행으로 이동. – G (Shift + g) : 마지막 행으로 이동. – ^ / Home / Shift + 6 : 현재 행의 첫 문자로 이동. – $…
Spring boot JdbcTemplate 적용방법
build.gradle에 아래 내용 추가 implementation ‘org.springframework.boot:spring-boot-starter-jdbc’ Service class 파일에 아래와 같이 내용 추가
JPA를 이미 사용하고 있을때 jdbcTemplate와 MyBatis를 사용한다면 어떤 것을 사용하는게 좋을까?
JPA(Java Persistence API)를 사용하는 경우, JdbcTemplate와 MyBatis 사이의 선택은 여러 요인에 따라 달라집니다. JPA는 자체적으로 강력한 ORM(객체 관계 매핑) 기능을 제공하므로, 이를 보완할 기술을…
Spring Boot – JSP 사용하기
/* 추가 */ implementation ‘jakarta.servlet:jakarta.servlet-api’ implementation ‘jakarta.servlet.jsp.jstl:jakarta.servlet.jsp.jstl-api’ implementation ‘org.glassfish.web:jakarta.servlet.jsp.jstl’ implementation ‘org.apache.tomcat.embed:tomcat-embed-jasper’ resources 하단에 폴더 및 jsp 생성 application.properties에 앞단, 뒷단 추가하기 demo 밑에 web에…