i want to use spring autowiring in servlet so here\'s my code:
@Configurable public class ImageServlet extends HttpServlet { @Autowired private Syst
Remove the @Configurable annotation from your servlet and add:
@Configurable
SpringBeanAutowiringSupport.processInjectionBasedOnCurrentContext (this);
at the first line of your init() method.