일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 바지
- 쿠팡 리뷰 분석
- 2020 설날
- 마스크/방한대
- 식품
- 쿠팡 브랜드
- 선물관
- 여성패션
- 쿠팡리뷰
- 바지/레깅스
- 가방/잡화
- 신발
- 아이 메이크업
- 패션마스크
- 황사마스크
- 쿠팡리뷰분석
- 자동차용품
- 겨울용품관
- 싱글라이프
- 건강/의료용품
- 쿠팡 리뷰 모아보기
- 스포츠/레저
- 메이크업
- 장갑/시즌잡화
- 건강식품
- 생활용품
- 뷰티
- 쿠팡 리뷰
- 파닥이
- 스킨케어
- Today
- Total
목록IT/Java (23)
파닥이
stackoverflow.com/questions/42379899/use-custom-setter-in-lomboks-builder/42380017 Use custom setter in Lombok's builder I have a custom setter in my Lombok-based POJO: @Data @Builder public class User { private static final PasswordEncoder ENCODER = new BCryptPasswordEncoder(); private String password = nu... stackoverflow.com
https://gompangs.tistory.com/entry/JAVA-%EB%9E%9C%EB%8D%A4-%ED%8D%BC%EC%84%BC%ED%8A%B8-%EA%B3%84%EC%82%B0%ED%95%98%EB%8A%94-%ED%81%B4%EB%9E%98%EC%8A%A4 [JAVA] 랜덤 퍼센트 계산하는 클래스(?) 게임이나 뭐 확률 관련된 개발을 하다보면 뭔가 퍼센트로 어떤 동작이 실행됐냐 안됐냐를 확인하고 싶을때가 있다 input : percent output : true / false ex) input : 0.8f output : true 이런식으로 말이다. 이.. gompangs.tistory.com
https://dd00oo.tistory.com/entry/JAVA-%EC%95%94%ED%98%B8%ED%99%94 [JAVA] 암호화 알고리즘 암호화 알고리즘에는 크게 단방향 암호화와 양방향 암호화가 있다. 단방향 암호화는 암호화 시키면 복호화 할 수 없는 걸 말한다. 복원방법이 없으므로 원래 어떤 문자였는지 알 수가 없다. 이러한 단방향 암호화.. dd00oo.tistory.com
https://flywaydb.org/getstarted/ Flyway by Boxfuse • Database Migrations Made Easy. Migrate directly from within your application Flyway flyway = Flyway.configure().dataSource(url, user, password).load(); flyway.migrate(); Get Started with the Java API flywaydb.org
logback configuration Chapter 3: Configuration Chapter 3: Logback configuration 和訳 (Japanese translation) In symbols one observes an advantage in discovery which is greatest when they express the exact nature of a thing briefly and, as it were, picture it; then indeed the labor of thought is wonderfull logback.qos.ch logging eclipse template Useful Eclipse Java Code Templates You can create vari..
http://close852.tistory.com/47
ProcessBuilder : http://yangyag.tistory.com/55 rundll32 : https://www.solvusoft.com/ko/files/%EC%98%A4%EB%A5%98-%EB%B0%94%EC%9D%B4%EB%9F%AC%EC%8A%A4-%EC%A0%9C%EA%B1%B0/exe/windows/microsoft/platforms-sdk-ddk/rundll32-exe/
class 합이백을넘는오류 extends Exception { //아무의미 없고 단순히 이런 인셉션이 일어낫다} class 값이오십을넘는오류 extends Exception {} class Calc { public int add(int x,int y) throws 합이백을넘는오류, 값이오십을넘는오류{ int result = x+y; if(result > 100) throw new 합이백을넘는오류(); //던진다 누구한테? throws 문뒤에있는애한테 (없으면 자기자신) if(x > 50 || y>50) throw new 값이오십을넘는오류(); //던진다 누구한테? throws 문뒤에있는애한테 (없으면 자기자신) return result; } public int sub(int x,int y) { int r..
http://stove99.tistory.com/106