Development

Spring boot JdbcTemplate 적용방법

build.gradle에 아래 내용 추가 implementation ‘org.springframework.boot:spring-boot-starter-jdbc’ Service class 파일에 아래와 같이 내용 추가  

2023년 12월 8일 댓글 없음

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에…

2023년 11월 27일 댓글 없음

beyond compare 4 체험판 만료시 해결법

1. 레지스트리 편집기 실행 2. \HKEY_CURRENT_USER\Software\Scooter Software\Beyond Compare 4 경로로 이동 3. CacheID 를 삭제 결과 아래 스크린샷처럼 나오면 정상적으로 열림

2023년 11월 24일 댓글 없음

Eclipse의 class파일로 exe파일 만드는 방법

사내에서 class 파일을 exe로 만들어 배포를 해야 하는 일이 생겨 정리겸 작성 test.java 파일이 실행파일이라고 가정. test2.jar 파일이 생성 되었고. jar파일이 동작이 정상적으로 되는지…

2023년 11월 8일 댓글 없음

[Git] VScode에서 gitlab/github 연동하기

💡 VScode에서 github/gitlab을 사용하는 방법 1. git 설치하기 https://git-scm.com/ (다운로드 사이트) 2. VScode에서 GitLens, Git History 설치 VScode에서 확장프로그램으로 git을 검색하여 GitLens, Git History 설치…

2023년 10월 25일 댓글 1