使用Myeclipse2016构建SpringMVC项目

1.新建web project

使用Myeclipse2016构建SpringMVC项目_第1张图片

2.右键项目,给项目添加spring框架如图,不需要勾选任何一个选项。

使用Myeclipse2016构建SpringMVC项目_第2张图片

使用Myeclipse2016构建SpringMVC项目_第3张图片


3.在WebRoot/WEB-INF目录下添加web.xml内容如下:



	
	
		springmvc
		org.springframework.web.servlet.DispatcherServlet
		
			contextConfigLocation
			classpath:springmvc-servlet.xml
		
		
	
	
		springmvc
		/
	

4.在src目录下添加springmvc-servlet.xml



	
	
	
	
	
	
	
	
		
		
		
		
	

5.新建controller,所在包应为springmvc-servlet.xml中指定的base-package

package com.czl.controller;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
@RequestMapping("/HelloWorld")
public class HelloWorldController {
	@RequestMapping("/hello")
	public String hello(Model model) {
		model.addAttribute("greeting", "Hello Spring MVC");
		return "helloworld";
	}
}
6.新建view,所在位置应为springmvc-servlet.xml中的prefix,后缀为指定后缀,名称与controller中返回的字符串相同。

<%@ page language="java" contentType="text/html; charset=UTF-8"
	pageEncoding="UTF-8"%>





Spring4 MVC -HelloWorld



	

${greeting }


完成后的目录结构:

使用Myeclipse2016构建SpringMVC项目_第4张图片

完成后运行,在浏览器输入:http://localhost:8088/HelloSpringMVC/HelloWorld/hello

使用Myeclipse2016构建SpringMVC项目_第5张图片

你可能感兴趣的:(JAVA)