为什么Spring的@Component不适用于JSP Custom Tag类?

时间:2013-11-21 16:19:04

标签: spring spring-mvc dependency-injection jsp-tags

我有自定义标签:

@Component
public class CVTag extends SimpleTagSupport {

@Inject
private JaxbSupport jaxbSupport;

@Override
public void doTag() throws JspException, IOException {
    JspWriter writer = getJspContext().getOut();
    Groups groups = jaxbSupport.getJaxbGroups();
}

NullPointerException被抛出,因为jaxbSupport为空。

是否真的有限制规定Custom-Tag不能是Spring托管Bean?或者我做错了什么?

使用Spring 3.2.4。 感谢。

0 个答案:

没有答案