spring security 自定义页面 404

当我在spring-security添加自定义标签
[code="java"]




[color=red][/color]

<authentication-manager>
    <authentication-provider user-service-ref="myUserDetailService"> </authentication-provider>
</authentication-manager>

<beans:bean id="myUserDetailService" class="sh.service.MyUserDetailService" />

[/code]
在浏览器输入 http://localhost:8080/springsecurity/views/home.jsp 直接报404的错,但是当我注释掉
[code="java"][/code]浏览器就会正常的进入到spring security自定义的登陆界面,请问为什么在加入自定义的标签就会报错