홈 (91) 썸네일형 리스트형 [호라이젠(ZEN)] 호라이젠 무료 채굴 방법 - getZen [호라이젠(ZEN)] 호라이젠 무료 채굴 방법 - getZen 호라이젠 무료 채굴 방법 1. 호라이젠 지갑 개설 2. 무료 채굴 홈페이지 가입 3. 추가 보상 받는 방법 1. 호라이젠 지갑 개설 https://www.horizen.io/wallets/ ZEN Wallets With Horizen, you have plenty of options to trade your ZEN. Store your ZEN on one of our wallets or one the many wallets we are integrated with including hardware wallets, paper wallets, Android and iOS wallets, and more. Use your ZEN around the.. [Spring] ApplicationContext - MessageSource [Spring] ApplicationContext - MessageSource MessageSource SpringBoot를 사용한다면 별다른 설정 필요없이 messages.properties를 사용할 수 있다. messages.properties messages_ko_kr.properties Reload 기능이 있는 MessageSource 사용 @Bean public MessageSource messageSource() { var messageSource = new ReloadableResourceBundleMessageSource(); messageSource.setBasename("classpath:/messages"); messageSource.setDefaultEncoding("UTF-8");.. [Spring] EnvironmentCapable - property [Spring] EnvironmentCapable - property property property: 어플리케이션에 사용되는 여러가지 key-value 쌍으로 제공되는 property에 간편하게 접근할 수 있는 기능 -> Spring은 property에 계층형으로 접근한다. StandardServletEnvironment의 우선순위 ServletConfig 매개변수 ServletContext 매개변수 JNDI (java:comp/env/) JVM 시스템 property (-Dkey="value") JVM 시스템 환경변수 (운영체제 환경변수) property 접근 방법 1) JVM 시스템 property 접근 방법 import org.springframework.beans.factory.annotatio.. [Spring] EnvironmentCapable - profile [Spring] EnvironmentCapable - profile profile - 빈들의 묶음(그룹) ApplicationContext가 상속받는 인터페이스들 중 EnvironmentCapable 인터페이스는 profile 기능을 제공한다. UseCase 1) 테스트 환경에서는 A라는 Bean을 사용하고, 배포 환경에서는 B라는 Bean을 사용하고 싶을때 2) 테스트 환경에서는 필요가 없고 배포할 때만 등록이 되면 되는 Bean의 경우 profile 정의 방법 1) @Configuration 클래스에 정의 import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuratio.. [Spring] Bean의 Scope ( 싱글톤 vs 프로토타입 ) [Spring] Bean의 Scope ( 싱글톤 vs 프로토타입 ) Scope: Bean Object가 생성되어 존재할 수 있는 범위 1. 싱글톤(Singleton) Scope 아무런 설정을 하지 않으면 기본적으로 싱글톤 Scope를 가지며, Property가 공유된다. DI DL 시 매번 같은 Object가 사용된다. 싱글톤 Scope를 가지는 Bean이 많아지면 어플리케이션 구동 시 등록될 Bean의 수가 많아짐으로 구동속도가 느려지게 된다. 등록방법 -> @Component Annotation 사용 시, 기본적으로 싱글톤 Scope을 가지는 Bean으로 등록된다. 2. 프로토타입(Prototype) Scope 싱글톤 Scope과 달리 DI DL 시 매번 새로운 Object가 사용된다. 등록방법 ->.. [Spring] 해당 타입의 빈이 여러개인 경우 [Spring] 해당 타입의 빈이 여러개인 경우 Field bookRepository in me.whiteship.demospring51.BookService required a single bean, but 2 were found: - myBookRepository: defined in file [/Users/youngjin/workspace/demospring51/target/classes/me/whiteship/demospring51/MyBookRepository.class] - youngjinBookRepository: defined in file [/Users/youngjin/workspace/demospring51/target/classes/me/whiteship/demospring51/You.. [JQuery] 데이터 조회시 로딩 이미지 보여주기(Ajax) [JQuery] 데이터 조회시 로딩 이미지 보여주기(Ajax) ajax 코드 $.ajax({ type : "POST", url : currentHostPath+"요청주소", data : { key : value }, // 로딩 이미지 보여주기 beforeSend:function(){ $('.wrap-loading').removeClass('display-none'); }, // 로딩 이미지 감추기 complete:function(){ $('.wrap-loading').addClass('display-none'); }, success : function(filePath) { printJS(filePath); }, error : function(data) { console.log("fail: ",data);.. [mac] java 버전 변경 [mac] java 버전 변경 java 버전 변경 변경순서 터미널 접속 java version 확인 설치되어 있는 JDK 리스트 확인 java version 변경 ( su 명령어를 통해 root 권한 부여 ) 변경 정보 확인 명령어 * java version 확인: java -version * 설치되어 있는 JDK 리스트 확인: /usr/libexec/java_home -V * java 1.8로 변경 - export JAVA_HOME=$(/usr/libexec/java_home -v 1.8) * java 11로 변경 - export JAVA_HOME=$(/usr/libexec/java_home -v 11) 이전 1 2 3 4 5 6 ··· 12 다음