«spring-3» 태그된 질문

15
<context : annotation-config>와 <context : component-scan>의 차이점
나는 봄 3을 배우고 난 기능성 뒤에를 파악하지 못하는 것 같습니다 &lt;context:annotation-config&gt;및 &lt;context:component-scan&gt;. 내가 읽은 것에서 그들은 다른 주석 ( @Required, @Autowiredetc vs , 등) 을 처리하는 것처럼 보이지만 @Component, 읽은 것에서도 동일한 bean post processor 클래스를 등록합니다 .@Repository@Service 나를 더 혼란스럽게하기 위해에 annotation-config 속성이 있습니다 &lt;context:component-scan&gt;. 누군가이 태그를 밝힐 …

3
Spring @Autowired 사용법 이해
Spring Autowired 주석을 이해하기 위해 spring 3.0.x 참조 문서를 읽고 있습니다. 3.9.2 @Autowired 및 @Inject 아래 예를 이해할 수 없습니다. XML에서 작동하려면 무언가를해야합니까? 실시 예 1 public class SimpleMovieLister { private MovieFinder movieFinder; @Autowired public void setMovieFinder(MovieFinder movieFinder) { this.movieFinder = movieFinder; } // ... } 실시 예 2 public …

4
Spring RESTful 애플리케이션에 ResponseEntity <T> 및 @RestController를 사용하는 경우
MVC 및 Rest와 함께 Spring Framework 4.0.7을 사용하고 있습니다. 나는 평화롭게 일할 수 있습니다 : @Controller ResponseEntity&lt;T&gt; 예를 들면 다음과 같습니다. @Controller @RequestMapping("/person") @Profile("responseentity") public class PersonRestResponseEntityController { 이 방법으로 (만들기 만하면) @RequestMapping(value="/", method=RequestMethod.POST) public ResponseEntity&lt;Void&gt; createPerson(@RequestBody Person person, UriComponentsBuilder ucb){ logger.info("PersonRestResponseEntityController - createPerson"); if(person==null) logger.error("person is null!!!"); else logger.info("{}", …

3
서블릿에서 <mvc : annotation-driven />과 <context : annotation-config />의 차이점은 무엇입니까?
Spring 2.5에서 Spring 3으로 마이그레이션하고 있습니다. 그들은 &lt;mvc:annotation-driven /&gt;흑 마술을하는 것을 소개했습니다 . 이것은 서블릿 구성 파일에서만 선언 될 것으로 예상됩니다. Spring 2.5에서는 방금 스캔하고 적절한 기본 패키지로 Dispatcher 서블릿 구성 XML을 선언 &lt;context:annotation-config /&gt;하고 사용했습니다 .&lt;context:component-scan base='...'/&gt;application-context.xml 서블릿 설정에서 mvc:annotation-driven와 context:annotation-config태그 의 차이점이 무엇이고 Spring 3 설정 파일에서 무엇을 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.