웹 프로그래밍(풀스택-->java)93 61. 주입 package kr.co.softcampus.config; import org.springframework.beans.factory.annotation.Autowire; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import kr.co.softcampus.beans.DataBean1; import kr.co.softcampus.beans.DataBean2; import kr.co.softcampus.beans.DataBean3; import kr.co.softcampus.beans.TestBean1; import kr.co.softcampus.be.. 2021. 12. 26. 10. 마우스 오버효과2 1. margin-top margin-top과 top의 차이는 margin-top은 그 블록을 영역을 늘리는 것이다.(전체비율도 같이 늘어난다.) 2. top: Top 속성은 static position을 제외한 이외의 position의 각 옵션 속성들의 부모 태그를 기준으로 수직으로 위치를 조정할 수 있게 해주는 속성이다. top에 주어지는 값에 따른 각 자식 태그들의 수직이동을 살펴보도록 하자. 3. float: left 난 float:left가 display:block일 떄만 적용이 되는 줄 알았지만, 그게 아니었다. .notice hover2 ul{overflow:hidden;} .notice_hover2 li{float:left; width:93px;} li는 inline인 데도 해당이 되더라... 2021. 12. 26. 60. Init,destroy 메서드 자 ,우리가 빈을 정의할떄 bean의 init메소드와 destroy 메소드를 설정할떄 , 객체가 생성이 될때 생성자가 호출된 이후에 init메소드가 호출이 되고 객체가 소멸될떄 그 전에 destroy에 설정된 메소드가 호출되고 , 그렇게 된다. 이거를 자바코드로 등록해서 사용하자.! MainClass.java package kr.co.softcampus.main; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import kr.co.softcampus.beans.TestBe.. 2021. 12. 25. 59. Java 코드를 활용한 빈 등록 자 이번시간에는 자바코드를 활용한 빈 등록에 대해서 알아볼 것이다. 위 자바코드는 xml 사용방식이고 두번쨰 자바코드는 자바 사용방식이다. --> 주로 xml을 이용하는 것보다는 자바파일 즉 어노테이션을 이용한다. 혼용해서 사용하는 사람들도 많다. MainClass.java package kr.co.softcampus.main; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import kr.co.softcampus.beans.TestBean1; import kr.co.so.. 2021. 12. 25. 이전 1 2 3 4 ··· 24 다음 반응형