일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- IntelliJ
- table
- mybatis
- GIT
- 보조정렬
- Eclipse
- hadoop
- SQL
- SSL
- Java
- vaadin
- Android
- mapreduce
- xPlatform
- Express
- window
- tomcat
- Spring
- R
- SPC
- NPM
- Python
- MSSQL
- Kotlin
- plugin
- Sqoop
- JavaScript
- es6
- 공정능력
- react
- Today
- Total
목록전체 글 (649)
DBILITY
https://tortoisegit.org/
xplatform 9.2에서 작성되었습니다. 비밀번호 자리수, 문자,숫자,특수문자 혼합, 아이디 포함유무, 동일문자사용(3회), 연속된 문자열(3회) 체크 어차피 자바스크립트랑 비슷하고, 테스트는 제대로 못함. function validPassword(userId:String,password:String, passwordRe:String) { if(password != passwordRe){ alert("입력하신 비밀번호와 비밀번호 확인이 일치하지 않습니다."); return false; } if(password.length 12) { alert("비밀번호는 영문자,숫자,특수문자의 조합으로 8자 이상 12자 이하여야 합니다."); return false; } ..
연동하는데 주력했다. 먼저 dependancy를 추가한다. org.springframework.boot spring-boot-starter-security org.springframework.boot spring-boot-starter-web com.h2database h2 org.mybatis.spring.boot mybatis-spring-boot-starter 2.1.0 application.properties에 db설정 등 처리 #mem base spring.datasource.url=jdbc:h2:mem:testdb;DB_CLOSE_DELAY=- 1;DB_CLOSE_ON_EXIT=FALSE #file base #spring.datasource.url=jdbc:h2:file:/data/testdb..
이전에는 inMemory와 사용자 정의 인증을 살펴보았다. 이번에는 jdbcAuthentication을 사용해 보자. dependancy를 추가한다. org.springframework.boot spring-boot-starter-security org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-data-jdbc com.h2database h2 application.properties에 h2 database설정 및 관련 테이블과 데이터 생성을 추가한다. #mem base spring.datasource.url=jdbc:h2:mem:testdb;DB_CLOSE_DELAY=- 1;DB_CLO..
https://marketplace.eclipse.org/content/sql-editor