«spring-annotations» 태그된 질문

15
점 (.)이있는 Spring MVC @PathVariable이 잘립니다.
이것은 Spring MVC @PathVariable이 잘리는 문제의 연속입니다. Spring 포럼에서는 ContentNegotiationManager의 일부로 고정 버전 (3.2 버전)을 발표했습니다. 아래 링크를 참조하십시오. https://jira.springsource.org/browse/SPR-6164 https://jira.springsource.org/browse/SPR-7632 내 응용 프로그램에서 .com의 requestParameter가 잘립니다. 누구든지이 새로운 기능을 사용하는 방법을 설명해 주시겠습니까? xml에서 어떻게 구성 할 수 있습니까? 참고 : 스프링 포럼-# 1 Spring MVC @PathVariable with 도트 …

6
단위 테스트 중 스프링 @ 값 채우기
양식에서 유효성을 검사하기 위해 프로그램에서 사용되는 간단한 Bean에 대한 단위 테스트를 작성하려고합니다. Bean은 주석이 달린 @Component클래스 변수를 사용하여 초기화됩니다. @Value("${this.property.value}") private String thisProperty; 이 클래스 내에서 유효성 검사 메소드에 대한 단위 테스트를 작성하고 싶지만 가능하면 특성 파일을 사용하지 않고 수행하고 싶습니다. 이 뒤에 내 이유는 속성 파일에서 가져 오는 값이 …


8
@Valid 주석은 Spring에서 무엇을 의미합니까?
다음 예에서 ScriptFile매개 변수는 @Valid주석으로 표시됩니다 . @Valid주석은 무엇을 합니까? @RequestMapping(value = "/scriptfile", method = RequestMethod.POST) public String create(@Valid ScriptFile scriptFile, BindingResult result, ModelMap modelMap) { if (scriptFile == null) throw new IllegalArgumentException("A scriptFile is required"); if (result.hasErrors()) { modelMap.addAttribute("scriptFile", scriptFile); modelMap.addAttribute("showcases", ShowCase.findAllShowCases()); return "scriptfile/create"; } scriptFile.persist(); return "redirect:/scriptfile/" + …

6
Spring에서 일반 유형 <T>의 Bean을 Autowire하는 방법은 무엇입니까?
클래스 Item&lt;T&gt;에서 자동 연결되는 데 필요한 빈이 있습니다 @Configuration. @Configuration public class AppConfig { @Bean public Item&lt;String&gt; stringItem() { return new StringItem(); } @Bean public Item&lt;Integer&gt; integerItem() { return new IntegerItem(); } } 그러나 시도 @Autowire Item&lt;String&gt;하면 다음과 같은 예외가 발생합니다. "No qualifying bean of type [Item] is defined: expected …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.