博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
@RequestMapping注解中的url
阅读量:6294 次
发布时间:2019-06-22

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

hot3.png

package com.springmvc.helloworld_1;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;@Controller@RequestMapping(value="/example")public class HelloWorld {        @RequestMapping("/helloworld")    public String hello(){        System.out.println("hello world");                return "success";    }}
上面代码在类定义处指定映射为"/example",在hello()方法处指定为"/helloworld"。那么hello()方法的URL映射地址为:http://localhost:8080/springMVC/example/helloworld(注:springMVC为项目名称,即注解中定义在类上的url会在“/”前默认加上项目名称,在写页面跳转url是要注意)

我是菜鸟,记录下面自己犯的一个错误

转载于:https://my.oschina.net/Cubicluo/blog/824727

你可能感兴趣的文章
Linux操作系统下以不同颜色命名的文件类型
查看>>
Spring(24)——自定义BeanDefinitionRegistryPostProcessor
查看>>
AngularJs 键盘事件和鼠标事件
查看>>
DC学院数据分析学习笔记(二):爬虫需要的HTML
查看>>
UWA平台新增【UI模块】和【粒子系统】检测功能!
查看>>
Oracle Study之--Oracle等待事件(2)
查看>>
Android开发者指南(15) —— Managing Virtual Devices
查看>>
查找、替换与定位
查看>>
解决莫名其妙出现connection closed的错误
查看>>
Linux多线程实践(3) --线程属性
查看>>
Catalyst3550交换机配置三层接口
查看>>
Elixir语言
查看>>
Java Calendar 类的时间操作
查看>>
esxi所连交换机划vlan导致vm不能通讯
查看>>
关于CE端口线路整改的建议
查看>>
如何禁止使用本地administrator进行共享连接
查看>>
用python解析html[SGMLParser]
查看>>
hive执行流程(3)-Driver类分析1Driver类整体流程
查看>>
Android开发学习笔记:对话框浅析
查看>>
Ajax学习-Ajax简介
查看>>