Java-SpringMVC 项目配置注意事项

使用Intellij idea创建maven+springmvc项目报错,遇到了大概就是有关tomcat端口占用之类的错误信息:

Java-SpringMVC 项目配置注意事项_第1张图片


解决办法: 在xxx-servlet.xml配置文件中能手敲就不要复制

例如:


<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.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.xsd">

    <context:component-scan base-package="com.mark.controller" />
    
    <mvc:default-servlet-handler/>

    
    <mvc:annotation-driven/>

    
    
    <bean id="jspViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
        <property name="prefix" value="/WEB-INF/pages/"/>
        <property name="suffix" value=".jsp"/>
    bean>

beans>

其中:

xmlns:mvc="http://www.springframework.org/schema/mvc"//这一句如果手敲的话,xmlns:mvc之类的会自动生成,项目运行就没有问题
//如果直接粘贴过来 项目运行肯定报错
<mvc:default-servlet-handler/>

被这里坑死了……

你可能感兴趣的:(springmvc)