자바 의 Spring 주해 개발 사례 상세 설명

5060 단어 JavaSpring주해
  • Spring 4 이후 주해 개발 을 사용 하려 면 op 의 가방 도입 을 확보 해 야 합 니 다
  • 在这里插入图片描述
  • 주 해 를 사용 하려 면 context 제약 을 가 져 와 주 해 를 지원 해 야 합 니 다!
  • 
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xmlns:context="http://www.springframework.org/schema/context"
           xsi:schemaLocation="http://www.springframework.org/schema/beans
           https://www.springframework.org/schema/beans/spring-beans.xsd
                               http://www.springframework.org/schema/context
           https://www.springframework.org/schema/context/spring-context.xsd">
        <!--       ,           -->
        <context:component-scan base-package="com.example.springannotation" />
        <context:annotation-config></context:annotation-config>
        <!-- <bean id="cat" class="com.example.springannotation.dao.Cat"/>
        <bean id="people" class="com.example.springannotation.dao.People"/>-->
    </beans>
    주석 지원:
    
    //@Component    <bean id="pepople" class="com.example.springannotation.dao.People" />
    @Component
    public class People {
        @Autowired(required = false)
        @Value("1235") //  <property name="id " value="1235"/>
        private int id;
        @Autowired(required = false)
        private String name ="ming";
        
        @Value("qing") //  <property name="name " value="qing"/>
        public void setName(@Nullable String name) {
            this.name = name;
        }
    }
    파생 된 주해
    @Component 는 몇 가지 파생 주해 가 있 습 니 다.우 리 는 웹 개발 에서 mvc 3 층 구조 에 따라 층 을 나 눌 것 입 니 다!
  • dao 【@Repository】
  • service【@Service】
  • controller【@Controler】
  • 이 네 개의 주해 기능 은 모두 같은 것 으로 모두 특정한 종 류 를 Spring 에 등록 하고 Bean 을 조립 하 는 것 을 대표 한다.
    
    @Scope("singleton") //singleton:      ,prototype:       、request:      、session:      
    
    xml 와 주석:
  • xml 가 더욱 만능 하여 어떠한 경우 에 도 적 용 됩 니 다!유지 보수 가 간단 하고 편리 하 다.주 해 는 자기 클래스 에서 사용 할 수 없 는 것 이 아니 라 유지 보수 가 상대 적 으로 복잡 합 니 다!
  • xml 와 주석 최 적 실천:
  • xml 는 bean 을 관리 하 는 데 사 용 됩 니 다.
  • 주 해 는 속성의 주입 만 완성 합 니 다.
  • 우리 가 사용 하 는 과정 에서 한 가지 문제 만 주의해 야 한다.주 해 를 발효 시 키 려 면 주해 의 지원
  • 을 켜 야 한다.
    
    <!--       ,           -->
        <context:component-scan base-package="com.example.springannotation" />
        <context:annotation-config></context:annotation-config>
    JAVA 방식 설정 Spring
  • @Configuration 이것 도 spring 용기 위탁 관리 로 용기 에 등록 합 니 다.그 는 원래 Component 이기 때 문 입 니 다.
  • @Configuration 대 표 는 이것 이 설정 클래스 입 니 다.우리 가 전에 본 beans.xml
  • 과 같 습 니 다.
    
    //        beans.xml
    import com.example.springannotation.dao.Cat;
    import com.example.springannotation.dao.People;
    import org.springframework.context.annotation.Bean;
    import org.springframework.context.annotation.ComponentScan;
    import org.springframework.context.annotation.Configuration;
    import org.springframework.context.annotation.Import;
    
    @Configuration
    @ComponentScan("com.example.springannotation")
    @Import(WwConfig.class)  //       
    public class AppConfig {
        //    bean              bean  
        //       ,    bean    id  
        //        ,    bean    class  
        @Bean
        public People getPeople(){
            return new People();
        }
    
        @Bean
        public Cat getCat(){
            return new Cat();
        }
    }
    
    import org.springframework.context.annotation.Configuration;
    @Configuration
    public class WwConfig {
    }
    
    
    //   
    import com.example.springannotation.config.AppConfig;
    import com.example.springannotation.dao.People;
    import org.junit.jupiter.api.Test;
    import org.springframework.boot.test.context.SpringBootTest;
    import org.springframework.context.ApplicationContext;
    import org.springframework.context.annotation.AnnotationConfigApplicationContext;
    @SpringBootTest
    class SpringannotationApplicationTests {
        @Test
        void contextLoads() {
                         ,
            //         AnnotationConfig         ,      class    !
            ApplicationContext context = new AnnotationConfigApplicationContext(AppConfig.class);
            People people = (People) context.getBean("getPeople");
            System.out.println(people.toString());
        }
    }
    
    자바 의 봄 주해 개발 사례 에 대한 상세 한 설명 은 여기까지 입 니 다.자바 의 봄 주해 개발 내용 에 대해 서 는 예전 의 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 응원 부 탁 드 리 겠 습 니 다!

    좋은 웹페이지 즐겨찾기