springmvc 访问不能跳转到Controller 求大神 急急急

这是后台log:
21:50:55.307 [http-apr-8888-exec-6] DEBUG o.s.web.servlet.DispatcherServlet - DispatcherServlet with name 'springMVC' processing GET request for [/workload/addWorkload]
21:50:55.308 [http-apr-8888-exec-6] DEBUG o.s.w.s.m.m.a.RequestMappingHandlerMapping - Looking up handler method for path /addWorkload
21:50:55.309 [http-apr-8888-exec-6] DEBUG o.s.w.s.m.m.a.RequestMappingHandlerMapping - Did not find handler method for [/addWorkload]
21:50:55.310 [http-apr-8888-exec-6] WARN o.s.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/workload/addWorkload] in DispatcherServlet with name 'springMVC'
21:50:55.311 [http-apr-8888-exec-6] DEBUG o.s.web.servlet.DispatcherServlet - Successfully completed request

xml 文件 中的springMVC设置有问题
把代码都放来看下

/addWorkload 这个路径在springMVC没映射

这是xml文件:
<?xml version="1.0" encoding="UTF-8"?>
xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:config/xml/applicationContext.xml</param-value>
</context-param>


 <!-- 设置字符集 -->
  <filter>
       <filter-name>encodingFilter</filter-name>
       <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
       <init-param>
            <param-name>encoding</param-name>
            <param-value>UTF-8</param-value>
       </init-param>
       <init-param>  
           <param-name>forceEncoding</param-name>  
           <param-value>true</param-value>  
       </init-param> 
  </filter>
  <filter-mapping>  
        <filter-name>encodingFilter</filter-name>  
        <url-pattern>/*</url-pattern>  
  </filter-mapping> 



 <!-- 配置SpringMVC servlet -->
<servlet>  
    <servlet-name>springMVC</servlet-name>  
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>  
     <init-param>  
        <param-name>contextConfigLocation</param-name>  
        <param-value>classpath:config/xml/springMVC-servlet.xml</param-value> 
      </init-param>  
    <load-on-startup>1</load-on-startup>  
</servlet>  
<servlet-mapping>  
    <servlet-name>springMVC</servlet-name>  
    <url-pattern>/</url-pattern>  
</servlet-mapping>  

<!-- 配置监听器,用于初始化 --> 
<listener>  
    <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>  
</listener>
<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

 <!-- 配置静态资源   -->


default
.css
.js
.ico
.swf
.gif
.jpeg
.psd
.jpg
.png
.bmp
.html
.crx
.xpi
.exe
.ipa
.apk
.htc
.woff
.eot
.svg
*.ttf

<!-- 异常跳转页面  
 <error-page>  
    <exception-type>java.lang.Exception</exception-type>  
    <location>/WEB-INF/jsp/exception.jsp</location>  
 </error-page> --> 

这是springMVC-servlet.xml:
<?xml version="1.0" encoding="UTF-8"?>
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">

 <!--  <import resource="classpath:config/xml/applicationContext.xml" />  -->
 <!-- <import resource="classpath*:applicationContext-interceptor.xml" /> -->

 <!-- <mvc:default-servlet-handler/> 

  <mvc:resources mapping="/images/**" location="/images/"/>  
<mvc:resources mapping="/js/**" location="/js/"/>  
<mvc:resources mapping="/css/**" location="/css/"/>    --> 

<!--  <mvc:resources location="" mapping=""/>  -->


  <!-- 对web包中的所有类进行扫描,以完成Bean创建和自动依赖注入的功能 -->
<context:component-scan base-package="com.baoju.common"/>


<mvc:annotation-driven />  <!-- 支持spring3.0新的mvc注解 -->

 <!-- 启动注解驱动的Spring MVC功能,注册请求url和注解POJO类方法的映射  -->
 <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
    <property name="cacheSeconds" value="0" />  
    <property name="messageConverters">  
        <list>  
            <bean class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter"></bean>  
        </list>  
    </property>
 </bean> 


 <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">  
    <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
    <property name="prefix" value="/views/"/>  
    <property name="suffix" value=".jsp"/>  
</bean>  

这是applicationContext.xml:
xmlns:context="http://www.springframework.org/schema/context"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">

<context:component-scan  base-package="com.baoju.common"/>   
<!-- 支持aop注解 -->
<aop:aspectj-autoproxy />




<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="locations">
        <list>
            <value>classpath:config/properties/jdbc.properties</value>
        </list>
    </property>
</bean>

<!-- 强制使用CGLIB代理
<aop:aspectj-autoproxy proxy-target-class="true"/>   -->

<!-- DataSource数据源 -->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
    destroy-method="close">
    <property name="driverClassName" value="${connection.driver_class}" />
    <property name="url" value="${jdbc.connection.url}" />
    <property name="username" value="${jdbc.connection.username}" />
    <property name="password" value="${jdbc.connection.password}" />
</bean>

<!-- Spring iBatis SqlMapClient -->
<bean id="sqlMapClient" class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">
    <property name="configLocation">
        <value>classpath:config/xml/SqlMapConfig.xml</value>
    </property>
    <property name="dataSource" ref="dataSource" />
</bean>

<bean id="workloadDao" class="com.baoju.common.dao.impl.WorkloadDao">
    <property name="sqlMapClient" ref="sqlMapClient"></property>
</bean>
<bean id="UserDao" class="com.baoju.common.dao.impl.UserDao">
    <property name="sqlMapClient" ref="sqlMapClient"></property>
</bean>
<bean id="ProjectDao" class="com.baoju.common.dao.impl.ProjectDao">
    <property name="sqlMapClient" ref="sqlMapClient"></property>
</bean>

 <!--事务管理DataSourceTransactionManager-->
<bean id="txManager"
    class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
    <property name="dataSource" ref="dataSource" />
</bean>

<!-- 配置事务特性 -->
<tx:advice id="txAdvice" transaction-manager="txManager">
    <tx:attributes>
       <tx:method name="add*" propagation="REQUIRED"/>
       <tx:method name="del*" propagation="REQUIRED"/>
       <tx:method name="update*" propagation="REQUIRED"/>
       <tx:method name="*" read-only="false"/>
   </tx:attributes>
</tx:advice>  

<!-- 配置哪些类的方法需要进行事务管理    --> 
  <aop:config>  
    <aop:pointcut id="baseServiceMethods" expression="execution(* com.baoju.common.service.*.*(..))"/>  
      <aop:advisor advice-ref="txAdvice" pointcut-ref="baseServiceMethods"/>  
    </aop:config>  
  <aop:aspectj-autoproxy /> 




  <!-- 添加了事务的管理类  
  <bean id="userManager" parent="baseTransactionProxy">     
    <property name="target">      
      <bean class="com.baoju.common.service.UserService"/>  
    </property>    
  </bean>     --> 

回复逝去的光阴:
这是addWorkload 映射那部分代码:
@Component
@Transactional
public class UserController {

@RequestMapping(value="/addWorkload")
public String addWorkload(@RequestParam("user_id") String user_id){
    System.out.println("==============================");
    System.out.println("user_id = " + user_id);
    return "addWorkload";
}

}

求助!! 求指导!!

看一下你的项目名和发布后可以访问的名字是否一致,
操作:选择项目-->右击-->选择"properties"-->MyEclipse-->Web ,看Web Context-root对应的输入框和你的项目名是否一致,实际访问以Web Context-root对应的输入框为准。

mvc:annotation-driven/ 这个加上就好了