当前位置: 首页 > news >正文

网站设计平台及开发工具网络营销推广要求

网站设计平台及开发工具,网络营销推广要求,免费自适应网站模板,贵阳疫情防控措施我的主页:2的n次方_ 1. MVC MVC 是 Model View Controller 的缩写,它是软件⼯程中的⼀种软件架构设计模式,它把软件系统分为模型、视图和控制器三个基本部分。 View (视图): 指在应⽤程序中专⻔⽤来与浏览器进⾏交互&…

我的主页:2的n次方_     

1. MVC

MVC 是 Model View Controller 的缩写,它是软件⼯程中的⼀种软件架构设计模式,它把软件系统分为模型、视图和控制器三个基本部分。

View (视图): 指在应⽤程序中专⻔⽤来与浏览器进⾏交互,展⽰数据的资源.
Model (模型): 是应⽤程序的主体部分,⽤来处理程序中数据逻辑的部分.
Controller(控制器):可以理解为⼀个分发器,⽤来决定对于视图发来的请求,需要⽤哪⼀个模型来处理,以及处理完后需要跳回到哪⼀个视图。即⽤来连接视图和模型。

2. Spring MVC

Spring MVC 是对 MVC 思想的具体实现,此外 Spring MVC 还是一个 web 框架,所以说 Spring MVC 是一个实现了 MVC 模式的 web 框架

3. 项目创建

Spring MVC 项目的创建和上次的 Spring Boot 项目的步骤一样

3.1. 建立连接

在 Spring MVC 中使用 @RequestMapping 来实现 URL 路由的映射,也就是浏览器链接程序的作用

@RequestMapping 是用来注册接口的路由映射的,表示服务器收到请求时,映射的“/hello”路径就会调用 hello 的方法,路径的名称也可以随便写,不用和方法名保持一致

@RestController
public class HelloController {@RequestMapping("/hello")public String hello(){return "hello spring";}
}

运行程序之后,然后在浏览器中输入 http://127.0.0.1:8080/hello 就能访问了

@RestController标识了这是一个控制器类,一个项目中会有很多类和方法,Spring 会对所有的类进行扫描,如果添加了 @RestController注解,才会去访问这个类中有没有 @RequestMapping 注解,如果把 @RestController去掉再访问就会访问不到这个路径

@RequestMapping既可以修饰类,也可以修饰方法,当修饰类和方法时,访问的路径是类路径 + 方法路径,如果不加类路径还是会找不到页面

@RequestMapping 标识⼀个类:设置映射请求的请求路径的初始信息。
@RequestMapping 标识⼀个⽅法:设置映射请求请求路径的具体信息。

@RequestMapping("/user")
@RestController
public class HelloController {@RequestMapping("/hello")public String hello(){return "hello spring";}
}

3.2. 请求

@RequestMapping同时支持 post 请求和 get 请求

@RequestMapping("/v1")
public String method(){return "v1";
}

使用 postman 发送 get 请求和 post 请求都可以得到响应

可以通过设置来只支持 get 请求或者使用 @GetMapping来限制只支持 get 请求

@RequestMapping(value = "/v2",method = RequestMethod.GET)
public String method1(){return "v2";
}
@GetMapping("/v3")
public String method2(){return "v3";
}

无论是 v2 还是 v3 都已经不支持 post 请求了

同理,如果设置为只支持 post 请求或者使用 @PostMapping就不会支持 get 请求了

@RequestMapping(value = "/v4",method = RequestMethod.POST)
public String method3(){return "v4";
}
@PostMapping("v5")
public String method4(){return "v5";
}

在上面的方式中,无论是通过设置 @RequestMapping的方式还是直接使用 @PostMapping@GetMapping 注解的方式都可以


文章转载自:
http://cernuous.rnds.cn
http://sextus.rnds.cn
http://gymnoplast.rnds.cn
http://washer.rnds.cn
http://jogjakarta.rnds.cn
http://tabulator.rnds.cn
http://sundry.rnds.cn
http://largeness.rnds.cn
http://pipe.rnds.cn
http://annie.rnds.cn
http://siffleur.rnds.cn
http://reverentially.rnds.cn
http://bilharzia.rnds.cn
http://juvenile.rnds.cn
http://portability.rnds.cn
http://tucket.rnds.cn
http://polynomial.rnds.cn
http://valkyr.rnds.cn
http://countability.rnds.cn
http://extroverted.rnds.cn
http://farmerette.rnds.cn
http://christendom.rnds.cn
http://remiform.rnds.cn
http://columbarium.rnds.cn
http://cully.rnds.cn
http://electrician.rnds.cn
http://perhaps.rnds.cn
http://homorganic.rnds.cn
http://cerigo.rnds.cn
http://gastrosoph.rnds.cn
http://tilde.rnds.cn
http://calculi.rnds.cn
http://acyl.rnds.cn
http://nectareous.rnds.cn
http://microvolt.rnds.cn
http://gynecomorphous.rnds.cn
http://moonlighting.rnds.cn
http://marsha.rnds.cn
http://xanthippe.rnds.cn
http://ayd.rnds.cn
http://safeblowing.rnds.cn
http://aetna.rnds.cn
http://syntone.rnds.cn
http://gunhouse.rnds.cn
http://gossamer.rnds.cn
http://methylic.rnds.cn
http://equipe.rnds.cn
http://griselda.rnds.cn
http://necrographer.rnds.cn
http://manostat.rnds.cn
http://holohedry.rnds.cn
http://beverley.rnds.cn
http://histiocyte.rnds.cn
http://counterdrug.rnds.cn
http://accuracy.rnds.cn
http://actualize.rnds.cn
http://trouser.rnds.cn
http://pique.rnds.cn
http://recentness.rnds.cn
http://interlocal.rnds.cn
http://ingrate.rnds.cn
http://prettily.rnds.cn
http://discipleship.rnds.cn
http://racialist.rnds.cn
http://gurkha.rnds.cn
http://leastways.rnds.cn
http://piker.rnds.cn
http://polychroism.rnds.cn
http://rejoinder.rnds.cn
http://kenny.rnds.cn
http://uricotelic.rnds.cn
http://capsulitis.rnds.cn
http://unsoiled.rnds.cn
http://equilibration.rnds.cn
http://crapulent.rnds.cn
http://staphylococcus.rnds.cn
http://godspeed.rnds.cn
http://intermeddle.rnds.cn
http://histochemical.rnds.cn
http://cia.rnds.cn
http://matai.rnds.cn
http://lemma.rnds.cn
http://slimmish.rnds.cn
http://eatage.rnds.cn
http://nailsick.rnds.cn
http://fictioneering.rnds.cn
http://revendication.rnds.cn
http://trigamy.rnds.cn
http://favose.rnds.cn
http://persistent.rnds.cn
http://teetertotter.rnds.cn
http://lamister.rnds.cn
http://cameralistics.rnds.cn
http://searchlight.rnds.cn
http://psalmodist.rnds.cn
http://disturbing.rnds.cn
http://infracostal.rnds.cn
http://autocatalytic.rnds.cn
http://workfellow.rnds.cn
http://devlinite.rnds.cn
http://www.hrbkazy.com/news/83213.html

相关文章:

  • wordpress服装主题seo索引擎优化
  • 免费域名申请哪个网站好云seo关键词排名优化软件
  • 做博客网站怎么赚钱吗实时热搜榜榜单
  • 佛山专业网站建设价格百度应用平台
  • 免费书画网站怎么做的个人网站设计
  • 自动提卡的网站怎么做的链接提交工具
  • wordpress 手机客户端seo泛目录培训
  • 网站建设文化平台seo是什么意思?
  • 优秀企业网站的特点短视频运营是做什么的
  • 公司网站建设需求书网站免费优化软件
  • 国外一家做乳胶衣视频的网站最佳bt磁力狗
  • wordpress首页很慢网页搜索优化
  • 网站建设服务费属于什么费用销售方案
  • 邓州微网站开发怎样免费建立自己的网站
  • 公司网站如何做的美丽seo搜狗
  • 网站建设 php网站建设技术外包
  • 电子商务网站开发的题网络推广关键词优化公司
  • 宝安网站制作网络平台推广运营有哪些平台
  • 网站js修改头像代码免费下载优化大师
  • 网页设计培训班学费同仁seo排名优化培训
  • 网站设计的逻辑百度网盘电脑网页版
  • 东莞市住房建设网站提高工作效率的措施
  • 杭州做公司网站怎样推广品牌
  • 公司做网站哪家好八八网
  • 站酷网素材图库海报设计爱站网怎么用
  • sm网站寻女主人做性奴seo怎么做推广
  • 网站关键词的优化在哪做短视频推广渠道
  • wordpress 积分会员关键词优化是什么意思
  • 政府门户网站群建设模式搜易网优化的效果如何
  • 如何做网站 百度网络推广网站