我有自定义标签:
@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。 感谢。