搭建简单的SpringMVC项目

记录一下,头一次写,欢迎评论。


1、准备jar包

这里只搭建基本的SpringMVC项目,所以只有必要的jar包

搭建简单的SpringMVC项目_第1张图片

2、创建web项目,配置web.xml

配置文件路径用了通配符,为了后面添加其他配置文件不需要再配置。



	build_test
	
		index.html
		index.htm
		index.jsp
		default.html
		default.htm
		default.jsp
	

	
		org.springframework.web.context.ContextLoaderListener
	

	
		contextConfigLocation
		classpath:spring-*.xml
	

	
		spring
		org.springframework.web.servlet.DispatcherServlet
		
			contextConfigLocation
			classpath:spring-*.xml
		
	

	
		spring
		*.do
	

3、创建Spring配置文件,并配置基本功能

这里配置了两个功能:

①组件扫描

②视图前后缀的统一配置




	
	

	
	

4、配置完成,编写测试代码

下面是项目文件结构截图

搭建简单的SpringMVC项目_第2张图片

MainAction代码:

package com.build.action;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

import com.build.service.TestService;

@Controller
public class MainAction {

	@Autowired
	private TestService testService;

	public TestService getTestService() {
		return testService;
	}

	public void setTestService(TestService testService) {
		this.testService = testService;
	}

	@RequestMapping("test")
	public String test() {
		return "test";
	}

}

搭建完成。访问效果:

搭建简单的SpringMVC项目_第3张图片

你可能感兴趣的:(搭建简单的SpringMVC项目)