在学习shiro中,初始化项目时候出现
    java.lang.ClassNotFoundException: org.apache.commons.logging.LogFactory
    的错误提示

    解决方案:
    添加下面的包即可

    1. <dependency>
    2. <groupId>commons-logging</groupId>
    3. <artifactId>commons-logging</artifactId>
    4. <version>1.2</version>
    5. </dependency>