Property(2)
-
spring- jdbc
기존방법 4가지 정보 ⇒ connection 연결 ⇒ prepare 스프링 db연결 4가지 propertity 파일저장 ⇒ 4가지 정보를 저장한 datasource connection pool (커넥션 관리해주는 클래스 ): 커넥선 풀에서 커넥션을 얻어서 사용, 커넥션 사용 후 반납, 다른 커넥션에서 재사용할 수 있게 해줌 jdbc dependency 추가하고 maven확인 alt + f5 com.jslsolucoes ojdbc6 11.2.0.1.0 sql table 만들기 create table test ( num number(4) primary key, username varchar2(10), address varchar2(10) ); insert into test values ( 1, '홍길동' ,..
2024.02.08 -
spring - property
property 이순신 echoBean public class EchoBean { String aaa; public String sayEcho() { return "hello"; } public EchoBean() { System.out.println("반드시 필요ㅘㄴ !!! 기본생ㅇ성자 호출"); } public String getAaa() { return aaa; } public void setMesg(String mesg) { System.out.println("setMesg(String mesg)호출"); this.aaa = mesg; } } main GenericXmlApplicationContext ctx = new GenericXmlApplicationContext("classpath:com..
2024.02.06