spring+springmc+mybatis整合遇见的问题

虽然是入了个门,但是今天自己搭简单框架(spring+springmc+mybatis)时,总是遇见这样那样的问题,给我很大的挫败感,还好程序狗的坚挺是不容小觑的。

最开始遇见的一个问题是jar包找不到或者不在类路径下, 实质上,我已经导入类路径下了,我运行的时候到tomcat下看见都在,很纳闷,尤其是log4j和context的两个相关监听器类找不到

为了方便,这里把spring4的所有jar全部导入了。只配置了以上提到的两个监听器如下:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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" id="WebApp_ID" version="3.0">
    <!-- 上下文参数 -->
    <context-param>
        <param-name>log4jConfigLocation</param-name>
        <param-value>classpath:conf/log4j.properties</param-value>
    </context-param>
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>
            classpath*:conf/applicationContext-*.xml
        </param-value>
    </context-param>

    <!-- 日志开启监听器 -->
    <listener>
        <listener-class>
            org.springframework.web.util.Log4jConfigListener
        </listener-class>
    </listener>

    <!-- context上下文监听器,这里会常见root容器 -->
    <listener>
        <listener-class>
            org.springframework.web.context.ContextLoaderListener
        </listener-class>
    </listener>
</web-app>
在部署到tomcat服务器启动报的异常得知,Log4jConfigListener开启日志记录器,这个日志记录是依赖于以下几个jar包的: ![这里写图片描述](http://img.blog.csdn.net/20160427001950987)

你可能感兴趣的:(spring,mybatis)