时间:2021-05-19
1. 新建 SpringMVC 的 Web 项目
2. 代码编写
代码参考 《Spring 实战》(第四版),本文和书中代码略有差异
删除不需要的配置文件
编写 JavaConfig 文件
新建配置文件 RootConfig.java
package com.yangrd.springmvc.config;import org.springframework.context.annotation.ComponentScan;import org.springframework.context.annotation.Configuration;import org.springframework.context.annotation.FilterType;import org.springframework.web.servlet.config.annotation.EnableWebMvc;@Configuration@ComponentScan(basePackages = {"com.yangrd.springmvc"}, excludeFilters = {@ComponentScan.Filter(type= FilterType.ANNOTATION,value = EnableWebMvc.class)})public class RootConfig {}新建配置文件 WebConfig.java
package com.yangrd.springmvc.config;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.ComponentScan;import org.springframework.context.annotation.Configuration;import org.springframework.web.servlet.ViewResolver;import org.springframework.web.servlet.config.annotation.DefaultServletHandlerConfigurer;import org.springframework.web.servlet.config.annotation.EnableWebMvc;import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;import org.springframework.web.servlet.view.InternalResourceViewResolver;@Configuration@EnableWebMvc@ComponentScan("com.yangrd.springmvc.controller")public class WebConfig extends WebMvcConfigurerAdapter { @Bean public ViewResolver viewResolver(){ InternalResourceViewResolver resolver = new InternalResourceViewResolver(); resolver.setPrefix("/WEB-INF/views/"); resolver.setSuffix(".html"); resolver.setExposeContextBeansAsAttributes(true); return resolver; } @Override public void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer){ configurer.enable(); }}编写 Controller
编写 view 文件
3. Tomcat 的配置和启动
配置tomcat服务
将Sping MVC 相关包放到 Web 工程 中的 lib 下
启动tomcat
这是启动tomcat 会报错
Error:(5, 8) java: 无法访问javax.servlet.ServletException
找不到javax.servlet.ServletException的类文件
这时需要添加 javax.servlet-api
4. 测试
浏览器访问 http://localhost:8080/home
显示
hello world
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
一、搭建步骤1、导入jar包、创建项目包结构2、在web.xml中配置前端控制器3、编写springMvc核心配置文件4、编写pojo类和Controller类
mybatis—spring项目目前大部分的java互联网项目,都是用springmvc+spring+mybatis搭建平台的。使用springi
本文介绍了Koa项目搭建过程详细记录,分享给大家,具体如下:Java中的SpringMVC加MyBatis基本上已成为JavaWeb的标配。NodeJS上对应的
本文介绍了Maven搭建springboot多模块项目,分享给大家,具体如下:备注:所有项目都在idea中创建1.idea创建maven项目1-1:删除src,
一、项目搭建1、可以在新建项目的使用SpringMVC框架。或者创建一个简单的项目之后再用AddFrameworkSupport来添加SpringMVC框架。2