Study/Java
-
[Eclipse] 이클립스 commit시 안올릴 파일 무시하기 ignored ResourcesStudy/Java 2020. 7. 28. 09:01
프로젝트를 여러 피시로 할 때 classpath, .setting 등 필요 없는 파일도 함께 commit된다 이러한 파일들을 무시하여 commit 할 수 있음 Window > Preferences Team 아래 Ignored Resources가 있음 여기서 Add Pattern을 클릭한 후 올리지 않을 파일명을 적으면 된다. .classpath .projrct .setting 3개 등록해둠
-
[Class String] Encode/Decode Constructor, MethodStudy/Java 2020. 7. 16. 12:31
Encoding (인코딩) Method Modifier and Type Method and Description byte[] getByte() byte[] getByte(Charset charset) void getByte(int srcBegin, int srcEnd, byte[] dst, int dstBegin) byte[] getByte(String charsetName) Decoding(디코딩) Method Constructor and Description String(byte[] bytes) String(byte[] bytes, Charset charset) String(byte[] bytes, int offset, int length) String(byte[] bytes, int offset, ..
-
[spring] 비밀번호 암호화Study/Java 2020. 7. 5. 20:35
UserService.java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 package simple.user; import java.util.List; import org.springframework.security.crypto.password.PasswordEncoder; public interface UserService { public List selectUserList(UserVo userVo); public UserVo selectUserOne(UserVo userVo); public int insertUser(UserVo userVo); public int updateUser(UserVo userVo); public int del..
-
[Spring] spring boot security - login 만들기Study/Java 2020. 7. 5. 20:35
pom.xml 1 2 3 4 5 org.springframework.boot spring-boot-starter-security Colored by Color Scripter cs Maven에 들어가서 spring boot security 검색하여 원하는 버젼 다운 http:s//mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-security Maven Repository: org.springframework.boot » spring-boot-starter-security Starter for using Spring Security VersionRepositoryUsagesDate2.3.x2.3.1.RELEASECentral..
-
[spring, jQWidgets] 주소록 CRUD 만들기Study/Java 2020. 7. 5. 20:03
UserVo.java 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 package simple.user; public class UserVo { private String userId; private String passwd; private String name; private String birth; private Str..
-
Http -> Https TLS/SSL 적용하기Study/Java 2020. 6. 30. 17:21
cmd (widow+R, cmd 입력)들어가서 생성 후 저장할 다이렉트로 이동 cd [store저장할 공간] 1. keytool 이용하여 인증서, store 생성 keytool -genkey -alias [keystore 별칭] -keyalg RSA -keystore [keystore 파일이름] -storetype pkcs12 ex) keytool -genkey -alias barun -keyalg RSA -keystore barun.pkcs12 -storetype pkcs12 1.1 생성 확인 keytool -list -v -keystore [keystore 파일이름] ex) keytool -list -v -keystore barun.pkcs12 2. keystore에서 인증서 추출(export) ke..