일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 프로젝트생성
- javascriptcalendar
- jQuery값전송
- 엔티티직접사용
- 벌크연산
- joinfetch
- springflow
- 자바서블릿
- calendar
- values()
- 제네릭
- paging
- 페이징
- jQueryUI
- JPA
- LIST
- 대량쿼리
- JQuery
- jscalendar
- fetchjoin
- 페치조인
- jQuery값전달
- Hibernate
- fullcalendar
- 제너릭
- namedQuery
- Generic
- javaservlet
- 스프링데이터흐름
- JPQL
- Today
- Total
목록분류 전체보기 (259)
가자공부하러!
참고 : https://bestcure.tistory.com/entry/Spring-boot-security-%EC%82%AC%EC%9A%A9%EC%8B%9C-ajax-%EC%B2%98%EB%A6%AC 1. 개발환경 > jdk 8, spring boot 2.1.8, spring security, JSP 2. 문제 > 스프링 시큐리티를 적용한 프로젝트에서 ajax 통신을 시도했을 때, 403 에러 발생 3. 해결 > 원인 : CSRF 관련 이슈 > 해결방법 : - JSP에 meta 태그 추가- csrf 값을 얻어오기 위함- JavaScript에서 csrf 토큰, 헤더 등록 4. 소스코드 > JSP12345Colored by Color Scriptercs > js123456// ajax 통신을 위한 csrf..
1. 페이징1234567SELECT *FROM ( SELECT @ROWNUM := @ROWNUM + 1 as rnum, SEQ, id, COMMENT, AMOUNT, RDATE FROM RHY_MEM_POINT, (SELECT @ROWNUM :=0) A ORDER BY RDATE DESC ) RESULTLIMIT 10, 10Colored by Color Scriptercs > 결과 2. 날짜1234567891011-- 날짜 포맷 설정(yyyy-mm-dd)DATE_FORMAT(RDATE,'%Y-%m-%d') -- 날짜 더하기 빼기DATE_ADD(NOW() , INTERVAL 12 DAY),'%Y-%m-%d'DATE_ADD(NOW() , INTERVAL 12 MONTH),'%Y-%m-%d'DATE_ADD(N..
참고 : https://medium.com/@hyunalee419/spring-boot-custom-error-page-4258cd37f05c 1. 순서2. 소스코드 () 1. 순서 1. 사용자에게 보여 줄 에러 뷰 생성2. ErrorController를 구현하는 컨트롤러 클래스 작성 > src/main/java/com/rhymes/app/common/controller/CustomErrorController.java 2. 소스코드 1234567891011121314151617181920212223242526272829303132333435363738package com.rhymes.app.common.controller; import javax.servlet.RequestDispatcher;import..
소스코드 : 1. 스크립트릿 12345678910111213141516Colored by Color Scriptercs 2. security taglib 활용 2.1. 디펜던시1234 org.springframework.security spring-security-taglibsColored by Color Scriptercs 2.2. jsp1234567891011 ${prc.username } ${auth } Colored by Color Scriptercs
https://engineering.linecorp.com/ko/blog/2019-firsthalf-line-internship-recruit-coding-test/
참고 : https://tram-devlog.tistory.com/entry/Spring-EhCache-%EC%A0%81%EC%9A%A9%ED%95%98%EA%B8%B0참고 : https://jojoldu.tistory.com/57참고 : https://055055.tistory.com/15 1. EHCache 적용1. 개발환경 > Spring Boot 2.1.8(maven, spring security) > JDK 1.8 2. 적용 순서 > 디펜던시 추가(pom.xml) -> configuration 파일 작성 -> 테스트 > 디펜던시 추가(pom.xml)123456789101112131415 net.sf.ehcache ehcache org.springframework.boot spring-boot-s..
참고 : https://leostory.tistory.com/122 1. cmd에서 해당 폴더로 이동 2. tree /f > tree_view(파일이름).txt 입력 octotree : 깃헙 소스를 편하게 볼 수 있게끔 해주는 크롬 플러그인
참고 : https://jojoldu.tistory.com/297 참고 : http://wiki.sys4u.co.kr/pages/viewpage.action?pageId=8552454참고 : https://genesis8.tistory.com/189참고 : https://webisfree.com/2017-10-26/redis-%EB%A0%88%EB%94%94%EC%8A%A4%EB%A5%BC-%EC%82%AC%EC%9A%A9%ED%95%9C-%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4-%EC%BA%90%EC%8B%B1%EC%84%9C%EB%B2%84-%EC%9A%B4%EC%98%81%ED%95%98%EA%B8%B0 1. Redis ? 1. REmote ..
소스코드 : 참고 : https://a1010100z.tistory.com/entry/Spring-Spring-boot-security-%EB%A1%9C%EA%B7%B8%EC%9D%B8-%EB%B7%B0-%EB%B3%80%EA%B2%BD%ED%95%98%EA%B8%B0%EA%B0%9C%EB%B0%9C%EC%9D%BC%EA%B8%B0A4 1. 로그인 뷰 설정 2. 3. 4. 문제 해결 1. 로그인 뷰 설정 1. 요약 > WebSecurityConfigurerAdapter를 상속받은 @Configuration 파일에 로그인 뷰 경로 설정 > 컨트롤러 작성 > 뷰 작성 2. SpringSecurityConfiguration extends WebSecurityConfigurerAdapter 12345678910..
소스코드 : https://github.com/HyeongJunMin/springboot/tree/master/MariaDBExam 설치방법 : https://dotheright.tistory.com/102?category=790771 개발환경 : MariaDB(10.2.14), Connector(2.2.3) 참고페이지 : https://taetaetae.github.io/2019/04/21/spring-boot-mybatis-mysql-xml/ 1. DB 생성, 테이블 생성, 사용자 등록 2. Spring Boot 연동 3. 문제 해결 1. DB 생성 1. HeidiSQL > DB 생성 : 좌측 빈곳에 오른클릭 -> 새로 생성 -> 데이터베이스 -> 이름입력 -> 확인 > 사용자 생성 : DB클릭(선택..
소스코드 : 참고 : https://ryudung.tistory.com/20참고 : http://progtrend.blogspot.com/2018/07/spring-boot-security.html참고 : https://a1010100z.tistory.com/entry/Spring-Spring-security-%EB%A5%BC-%EC%82%AC%EC%9A%A9%ED%95%B4%EB%B3%B4%EC%9E%90-%ED%9A%8C%EC%9B%90%EA%B0%80%EC%9E%85%EB%B6%80%ED%84%B0-%EB%A1%9C%EA%B7%B8%EC%9D%B8%EA%B9%8C%EC%A7%80-Spring-boot-Gradle-MyBatis-MySQL참고 : 1. Spring Security 개요 2. 환경설정 ..