Autowired(4)
-
list, map, @Autowired
collection_list @SpringBootApplication /// 서브패키지에 있는 @JavaConfig 자동생성함 public class Sample01BeanApplication { public static void main(String[] args) { ApplicationContext ctx=SpringApplication.run(Sample01BeanApplication.class, args); DBService service= ctx.getBean("myService", DBService.class); List list= service.list(); System.out.println(list.size()); for (String s : list) { //List data= dao.l..
2024.02.28 -
parameter
initparam/multi initparam web.xml에 경로 변경시 servlet-context.xml 자리 변경 /WEB-INF/appservlet-context.xml contextConfigLocation /WEB-INF/spring/root-context.xml org.springframework.web.context.ContextLoaderListener appServlet org.springframework.web.servlet.DispatcherServlet contextConfigLocation /WEB-INF/appservlet-context.xml 1 appServlet / multi bean 생성 @Controller public class SecondController { p..
2024.02.12 -
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 -
props, autowired
map props bean 010 011 018 main GenericXmlApplicationContext ctx= new GenericXmlApplicationContext("classpath:com/spring/stu.xml"); Student stu= ctx.getBean("student", Student.class); Map map= stu.getMapCat(); Set keys= map.keySet(); for (String key : keys) { System.out.println(map.get(key)); } System.out.println("============="); Properties props= stu.getPhones(); Set xxx= props.stringPropertyN..
2024.02.07