일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- values()
- joinfetch
- 벌크연산
- javaservlet
- 스프링데이터흐름
- calendar
- JPQL
- springflow
- 제너릭
- 자바서블릿
- fullcalendar
- jQuery값전송
- 제네릭
- paging
- 대량쿼리
- jscalendar
- 페치조인
- JPA
- 페이징
- 엔티티직접사용
- fetchjoin
- Generic
- namedQuery
- jQueryUI
- 프로젝트생성
- LIST
- Hibernate
- JQuery
- javascriptcalendar
- jQuery값전달
- Today
- Total
목록전체 글 (259)
가자공부하러!

1. 개발환경 1. Spring Boot 2.1.9(maven, JSP, JPA, Mybatis, JDK 8) 2. Maria DB 3. SourceTree(3.2.6) 4. Windows 10 2. 순서 1. 프로젝트 생성 2. SourceTree 설치 > BitBucket 계정 생성(Atlassian) 3. Github 계정 생성 및 새 레파지토리 생성 4. 1에서 만들어둔 프로젝트를 새 레파지토리에 저장 4.1. 프로젝트 경로에서 빈 공간에 오른쪽 클릭 -> Git Bash Here 4.2. git init 입력 4.3. git add . 입력 4.4. git commit -m "커밋메세지" 입력 4.5. git remote add origin 깃헙주소.git 입력 4.6. git remote -v..

1. ec2 > 참고 : https://jojoldu.tistory.com/263 - 순서정리 : ec2인스턴스 생성 및 시작 -> 보안그룹 설정(인바운드 규칙) -> java 버전업그레이드 -> 톰캣 설치 -> war파일 톰캣경로에 저장 -> 톰캣 start - user : ec2-user - 보안그룹 생성, 8080포트 모두 접근 가능하게끔 인바운드 규칙 설정(AWS 웹) - ec2 jdk 8로 업그레이드(putty) - ec2에 tomcat8 설치(putty) > 참고 : https://sarc.io/index.php/aws/520-aws-ec2-linux-10-apache-tomcat - ec2-user에 CRUD 권한 부여(putty) > 참고 : https://muckycode.blogspot..

참고 : https://gompangs.tistory.com/entry/Springboot-JPAHibernate-%EA%B3%B5%EB%B6%80-%ED%8E%B8 1. 적용순서 > 디펜던시 추가 org.springframework.boot spring-boot-starter-data-jpa > DB 커넥터 설정, DataSource 설정 - spring.jpa.database= mysql > Entity Class 생성 > CRUD Repository 생성 2. 소스코드 > 설정파일 - application.yml spring: #db config datasource: hikari: jdbc-url: jdbc:mysql://112.169.197.59:23306/rhymes?characterEncodi..
다른 기능 없이 자동완성기능만을 위한 프로젝트github : https://github.com/HyeongJunMin/WebFront/tree/master/BootstrapAutoComplete-typeahead 뷰 : typeahead.jsp자바스크립트 : typeahead-init.js 개발환경 : Spring Boot, JSP, MariaDB 12345 Colored by Color Scriptercs

조건 : bootstrap-3-typeahead.js 다운로드 필수(https://github.com/bassjobsen/Bootstrap-3-Typeahead)개발환경 : - Spring Boot 2.1.8, MyBatis, Bootstrap 최신, jQuery 최신(2019-10-23 기준) 1. jsp(모달부분만) 12345 등록ID 쿠폰지급Colored by Color Scriptercs 2. javascript 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950$(document).on('show.bs.modal','#_coupon_detail_info_modal', function ..

100건 이하 다량 데이터를 DB에 저장할 때 사용한 반복문 1 2 3 4 5 6 7 INSERT INTO RHY_MEM_COUPON_DETAIL (C_SEQ, COUP_CODE) VALUES ("${item.seq}", "${item.coup_code}") Colored by Color Scripter cs
1. 적용12345678910111213 ClassicEditor .create( document.querySelector( '#review_editor' ) ) .catch( error => { console.error( error ); } );Colored by Color Scriptercs적용끝2. 이미지 업로드 세팅 > 참고 : Easy Image- https://ckeditor.com/docs/ckeditor5/latest/features/image-upload/easy-image.html > 세팅- EasyImage 플러그인 include- EasyImage는 유료이기 때문에 중단 > 참고 : CKFinder- https://ckeditor.com/docs/ckeditor5/latest/fea..

EHCache 설정 : https://dotheright.tistory.com/235 참고 : http://logback.qos.ch/documentation.html 참고 : https://taetaetae.github.io/2017/02/19/logback/ 참고 : https://derekpark.tistory.com/53 참고 : https://jeong-pro.tistory.com/154 1. Logback? 1. Logback > 자바 오픈소스 로깅 프레임워크 > Slf4j의 구현체이자 Spring Boot의 기본 로그 객체 2. 구성 > Appender - ConsoleAppender : 콘솔에 로그를 찍는 방법 - FileAppender : 파일에 로그를 찍는 방법 - RollingFile..

쓰기 좋은 달력(datetimepicker) 프로그래머스 과제 하다가 알게됨 https://tempusdominus.github.io/bootstrap-4/Installing/#cdn Installing - Tempus Dominus - Bootstrap 4 Installing This guide still needs a lot of work Minimal Requirements jQuery Moment.js Locales: Moment's locale files are here Installation Guides CDN Package Managers Rails Rails 5.1 Support - Bootstrap 4 Datetime Picker Rails Add gem 'bootstrap4-dateti..
참고 : https://developer.mozilla.org/ko/docs/Web/CSS/CSS_Grid_Layout 1. Grid Layout? > 격자형태로 레이아웃을 설정할 수 있는 CSS 기술 > CSS로 일일이 위치를 지정해준 것처럼, 실제로 겹치게 층을 지면서 자리를 잡도록 요소의 위치를 지정할 수 있다.
1. 작업순서 > 월, 일 캘린더 뷰 생성(jQuery.load()) > 월 캘린더로 일정가져오기 > 월 캘린더에서 일정 추가하기 > 일 캘린더로 일정 가져오기 > 일 캘린더에서 일정 추가하기 소스코드 : https://github.com/HyeongJunMin/MinCalendar
1. Luanching .... > Gradle Excutions 탭에서 Run Build 실행 > Progress탭에서 Launching 진행사항 확인 > 에러발생 2. import 오류 > import -> Gradle(STS) -> 프로젝트폴더선택 -> Build Model 클릭 -> 에러 발생 > 참고 : https://stackoverflow.com/questions/55320770/you-are-currently-using-tooling-api-version-2-2-1-you-should-upgrade-your-tooli- 실패 > 참고 : https://blog.sz21c.com/542