美文网首页
SSM报错整理

SSM报错整理

作者: XuJiaxin_ | 来源:发表于2018-06-24 16:51 被阅读0次

    1.org.springframework.web.context.ContextLoaderListener

    项目找不到ContextLoaderListener

    方法:

    1.在web.xml中加入  监听
        <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
        </listener> 
    
    

    补充:这种方法不完全

    解决方法:
    
    1. 右键单击工程项目 ->点击 properties
    2. 选择 Deployment Assembly
    3. 点击 Add -> Java Build Path Entries -> Next
    4. 选择 Maven Dependencies -> Finish -> Apply -> OK
    5. Clean project and server. 重启server
    

    相关文章

      网友评论

          本文标题:SSM报错整理

          本文链接:https://www.haomeiwen.com/subject/wehsyftx.html