일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 게시판 작성자를 아이디로
- 공백검사
- 자바스크립트
- 관계형 데이터베이스
- 유효성검사
- 모던 자바스크립트 Deep Dive
- 스프링 시큐리티
- 출처 모던 자바스크립트 Deep Dive
- 자바 ORM 표준 JPA 프로그래밍
- 중복되지 않는 값 만들기
- Thymeleaf
- 자바
- ORM
- UUID
- spring security
- java
- msa
- JPA
- Today
- Total
목록전체 글 (71)
인지용
기본 설정 방법 1. 언어 파일 생성 /src/main/resources/messages 폴더 밑에 언어별 properties 파일 생성 (마지막에 들어가는 ko, en 등등은 언어코드를 넣어줘야 한다.) messageContext.properties 파일 추가 이유는 locale에 대응하는 파일이 없을 경우 default로 messageContext.properties 파일을 참조하기 때문이다. 그래서 기본으로 표시할 언어의 값들을 messageContext.properties에 추가해놓으면 된다. 언어 파일별로 값만 변경해주면 된다. 2. ReloadableResourceBundleMessageSource 빈 등록 context-common.xml classpath:/messages/messageCo..
해결방법 pom.xml에서 url 태그의 http://...로 시작되는 부분을 모두 https://...로 변경 해주면 라이브러리들이 모두 임포트된다. 변경전 변경후
mybatis 사용 중 에러가 발생하였다. 세팅 문제의 쿼리 /* selectCodeInfo */ SELECT t1.client_id as client_id ,t1.redirect_uri as redirect_uri FROM testTable t1 WHERE 1=1 AND t1.client_id = #{clientId} 뭐가 문제인지 보이는가?.... 이것 때문에 3시간 삽질했다... 원인 alias와 parameterType의 대소문자가 달라서 생긴 문제였다. typeAliases에서 정한 alias는 소문자 string이었는데 쿼리의 parameterType은 대문자 string이어서 그렇다 해결 방법 alias와 parameterType의 대소문자를 잘 보고 사용하자 ㅠㅠ
이클립스에서 svn으로 프로젝트를 다운로드하고 서버 실행하는데 localhost:8080까지는 들어가지는데 데이터 전송할 때 에러가 발생한다. javax.net.ssl.SSLHandshakeException: No appropriate protocol (protocol is disabled or cipher suites are inappropriate) com.mysql.jdbc.exceptions.jdbc4.CommunicationsException java.sql.SQLException: Cannot create PoolableConnectionFactory Could not open JDBC Connection for transaction; nested exception is java.sql.SQL..