新建springmvc配置文件

新建spring或springmvc的配置文件时,需要先加入spring-bean-4.3.18.RELEASE.jar包,当然可以是其他版本,这样就可以在资源目录下,比如resources(Resources Root类型)目录下右键New->XML Configuration File 选择Spring Config 只有加入了spring-bean-4.3.18.RELEASE.jar包或依赖才会有Spring Config这个选项

新建成的springmvc配置文件springmvc-servlet.xml如下所示:

可以看到上方有黄色横条似的警告,可以点击Create Spring facet,也可以手动在Project Structure...->Modules下选中模块名称,点击+号选择Spring确定后完成,此时变成这样:

还是有黄色横条似的警告,接着点击Configure application context 选择Create new application context...按默认完成,或者手动在Project Structure...->Modules下选中刚刚新建的Spring,点击下方的+号来New Application Context,填入名称,springmvc配置文件比如就写Springmvc Servlet,勾选上该配置文件确定完成,黄色横条消失

需要什么标签就需要加入什么约束,比如<mvc:annotation-driven/>需要mvc标签就需要加入mvc约束:

再比如context标签及约束:

原文地址:https://www.cnblogs.com/yanguobin/p/11622096.html

时间: 2024-10-11 09:50:58

新建springmvc配置文件的相关文章

IDEA下新建SpringMVC项目的配置文件

IDEA新建SpringMVC项目后有三个xml文件,另一个不动,其他两个如下配置,然后应该就可以跑通并正常跳转了. web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance&

【转载】SpringMVC配置文件详解

转自:https://my.oschina.net/happyBKs/blog/691502 web.xml文件是web应用的部署描述. 在上一节的springMVC示例中 ,idea下的Maven-webapp项目自动生成了web.xml文件,用的是webapp2.3的标准.文件头声明如下: <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http:/

eclipse maven新建springMVC项目(原创)

1.配置eclipse maven 2.新建maven项目 3.新建src/main/java,更新pom <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.a

深入讲解SpringMVC配置文件

<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p&

springMVC配置文件位置及名称

在web.xml文件内配置springMVC的DispatcherServlet的那个servlet内添加 <servlet> <servlet-name>mvc</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextCon

【Spring】SpringMVC配置文件

SpringMVC中一般会引入三个配置文件applicationContext.xml.dispatcher-servlet.xml(SpringMVC-servlet.xml).web.xml 1.dispatcher-servlet.xml(SpringMVC-servlet.xml) DispatcherServlet是前端控制器设计模式的实现,提供Spring Web MVC的集中访问点,默认使用servlet context.加载包含Web组件的bean,如控制器.视图解析器以及处理器

Maven+SpringMVC配置文件

项目目录: 1.修改web.xml <?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/

SpringMVC配置文件dispatcherServlet-servlet.xml

<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/

IDEA新建SpringMVC项目报错解决办法

网页运行的错误: HTTP Status 500 - Handler processing failed; nested exception is java.lang.NoClassDefFoundError: javax/servlet/jsp/jstl/core/Config type Exception report message Handler processing failed; nested exception is java.lang.NoClassDefFoundError: