正确写法:
<mvc:resources mapping="/html/**"
location="/WEB-INF/views/website/appdirection/" />
<mvc:resources mapping="/hotCar/**"
location="/WEB-INF/views/website/hotCar/" />
错误写法:
<mvc:resources mapping="/html/**"
location="/WEB-INF/views/website/appdirection/" />
<mvc:resources mapping="/html/**"
location="/WEB-INF/views/website/hotCar/" />
错误原因:mapping 值重复