Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a bean like follows

<bean name="requestDataValueProcessor"    class="com.bom.DOMRequestDataValueProcessor"/>

DOMRequestDataValueProcessor implements the RequestDataValueProcessor.

I am doing my mvc configuration using the following class and not by xml configuration file.

   @Configuration
   @EnableWebMvc
   public class WebConfig extends WebMvcConfigurerAdapter {

   }

How can i add the above bean in the configuration ?

share|improve this question

1 Answer

up vote 0 down vote accepted

you should enable the components scanning. See Spring doc : http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/beans.html#beans-java

<beans>
  <context:component-scan base-package="com.acme"/>
</beans>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.