cas连接自己的Mysql数据库后,访问cas页面报404

<!-- class="org.jasig.cas.authentication.AcceptUsersAuthenticationHandler">





-->

          <property name="sql" value="select password from userinfo where userName=?" />

          <property name="dataSource" ref="dataSource"/>

</bean>
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">

      <property name="driverClassName"value="com.mysql.jdbc.Driver"></property>

      <property name="url" value="jdbc:mysql://localhost:3306/cas"></property>

      <property name="username"value="root"></property>

      <property name="password"value="123456"></property> 


这是我的deployerConfigContext配置文件,在没有配置着这些之前,使用默认的验证方式是可以访问到cas页面的,但是配置这些之后,访问cas页面就是提示404错误了。
请问一下这是什么错误啊

http://www.oschina.net/question/2541505_2154014