728x90

스프링설치 3

[Spring] Spring @Component뜻과 사용법

@Component @Component 어노테이션을 이용하면 Bean Configuration 파일에 Bean을 따로 등록하지 않아도 사용할 수 있다. 빈 등록자체를 빈 클래스 자체에다가 할 수 있다는 의미이다. ApplicationUser //긁지않은 개발자 @AllArgsConstructor @NoArgsConstructor @Data @Component("applicationUser") public class ApplicationUser { private String name="최고관리자"; } Application //긁지않은 개발자 @AllArgsConstructor @NoArgsConstructor @Data @Component("application") public class Applicat..

[Spring] Spring 이메일, SNS 메세지 보내기

Spring 이메일, SNS 메세지 보내기 interface MessageService //긁지않은 개발자 public interface MessageService { boolean sendMessage(String msg, String rec); } EmailService //긁지않은 개발자 public class EmailService implements MessageService { public boolean sendMessage(String msg, String rec) { System.out.println(rec + "에게 " + msg + "를 이메일로 전송합니다."); return true; } } TwitterService //긁지않은 개발자 public class TwitterServic..

[Spring] Spring 암호화 , 2가지방법

Spring 암호화 vo interface // 긁지않은개발자 public interface Encryption { public void encryptData(); } // 긁지않은개발자 public class MD5Encryption implements Encryption { @Override public void encryptData() { System.out.println("MD5 알고리즘으로 암호화 합니다."); } } // 긁지않은개발자 public class RSAEncryption implements Encryption { @Override public void encryptData() { System.out.println("RSA 알고리즘으로 암호화 합니다."); } } service //..

728x90