博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringMVC_HelloWorld_03
阅读量:5060 次
发布时间:2019-06-12

本文共 1290 字,大约阅读时间需要 4 分钟。

通过注解的方式实现一个简单的HelloWorld。

一、新建项目

不同的是springmvc配置文件的命名和路径,此处为src/springmvc.xml

二、配置文件

1、配置web.xml

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

2、配置springmvc.xml

三、编写Controller

package com.zhy.controllers;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;@Controllerpublic class HelloWorldController {    /*     * 通过视图解析器(ViewResolver)得到实际的物理视图     * 视图解析器的解析规则:prefix + returnvalue + suffix     * 结合本实例,视图解析器的解析出来的物理视图为:/WEB-INF/views/helloworld.jsp     * */    @RequestMapping("/mvc")    public String hello(){                System.out.println("call controller");        return "helloworld";    }}

四、新建jsp页面

四、运行

转载于:https://www.cnblogs.com/zhou-yi/p/5564326.html

你可能感兴趣的文章
解决Sql Plus乱码的曲折历程
查看>>
CRM JS 日期格式化及时间设置
查看>>
JS 4 新特性:混合属性(mixins)
查看>>
jQuery get() 和 post() 方法用于通过 HTTP GET 或 POST 请求从服务器请求数据。
查看>>
hdu 4502
查看>>
Nginx优化
查看>>
js数组复制
查看>>
CoreMontion加速计
查看>>
【php】PDO
查看>>
Find the longest route with the smallest starting point
查看>>
hashMap的源码实现
查看>>
jquery selector 2
查看>>
NSIS API 函数常用备份
查看>>
STL之list(双向链表)
查看>>
朴素贝叶斯应用:垃圾邮件分类
查看>>
php中的常用数组函数(七) 数组合并 array_merge()和array_merge_recursive()
查看>>
《DSP using MATLAB》 Problem 4.9
查看>>
extern "c"
查看>>
利用CSS3-boxshadow绘制“蒙娜丽莎的微笑”
查看>>
scanf()函数
查看>>