자바 의 Spring 주해 개발 사례 상세 설명
<?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 층 구조 에 따라 층 을 나 눌 것 입 니 다!
@Scope("singleton") //singleton: ,prototype: 、request: 、session:
xml 와 주석:
<!-- , -->
<context:component-scan base-package="com.example.springannotation" />
<context:annotation-config></context:annotation-config>
JAVA 방식 설정 Spring
// 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());
}
}
자바 의 봄 주해 개발 사례 에 대한 상세 한 설명 은 여기까지 입 니 다.자바 의 봄 주해 개발 내용 에 대해 서 는 예전 의 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 응원 부 탁 드 리 겠 습 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
JPA + QueryDSL 계층형 댓글, 대댓글 구현(2)이번엔 전편에 이어서 계층형 댓글, 대댓글을 다시 리팩토링해볼 예정이다. 이전 게시글에서는 계층형 댓글, 대댓글을 구현은 되었지만 N+1 문제가 있었다. 이번에는 그 N+1 문제를 해결해 볼 것이다. 위의 로직은 이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.