분류 전체보기300 rest api + jpa(jpql) + replica set 지인의 요청으로 간단한 서버 구현. * 보안 및 민감한 부분은 코드가 없을 수 있습니다. 이 포스팅은 누군가에게 프로그램 구현을 위한 공유가 아닙니다. * 220811 멀티프로젝트 배포 시 설정을 각 모듈로 나눠진 내용을 최상단으로 변경 환경 : 오라클 클라우드 free... ram 1gb, vcpu2 OS : Linux centos7 DB : mariadb 10.5.8 Tool : intellij, Java 1.8 Spring boot 2.7.1 Gradle 프로젝트 구조 멀트 프로젝트 Gradle 설정 buildscript { ext { springBootVersion = '2.7.1' } repositories { mavenCentral() } dependencies { classpath("org... 2022. 8. 2. 자바 MessageFormat C#의 String.Format과 유사한 클래스 함수 Java MessageFormat.format("[{0}]{1}", "0 입력 문자열", "1 입력 문자열"); public static String format(String pattern, Object ... arguments) { MessageFormat temp = new MessageFormat(pattern); return temp.format(arguments); } C# String s = String.Format("The current price is {0} per ounce.", pricePerOunce); 2022. 5. 20. 자바 비밀번호 생성(금융보안원) import java.util.ArrayList; import java.util.List; public class PasswordValidation { //220510 nhm, public static boolean isPasswordInvalid(String password, String email, String birth, String cellNo, int characterCheckCount) { //비밀번호 길이 if(!isPasswordRange(password)) { return false; } //알파벳 대문자와 소문자, 숫자, 특수문자 중 두 종류 이상 포함 if(!isContainsPasswordType(password)) { return false; } //계정명· 고유식별번호·생년월일·.. 2022. 5. 10. Mariadb 비밀번호 초기화(centOS7, Mariadb10.6.5) 예전에도 올렸을 지 모르겠지만.. 나를 위해 다시 올림. 1. server.cnf 파일이 있는 위치로 이동 [root@centos my.cnf.d]# cd /etc/my.cnf.d/ 2. 권한 테이블 스킵 # this is only for the mysqld standalone daemon [mysqld] skip-grant-tables 3. 재시작 [root@centos my.cnf.d]# systemctl restart mariadb 4. 접속(패스워드는 엔터 누르면 생략되서 접속된다.) [root@centos my.cnf.d]# mysql -u root -p Enter password: 5. 명령어 실행 MariaDB [(none)]> FLUSH PRIVILEGES; Query OK, 0 rows .. 2022. 1. 26. 이전 1 ··· 5 6 7 8 9 10 11 ··· 75 다음