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

网页浏览器图标优化大师有用吗

网页浏览器图标,优化大师有用吗,自助建站平台哪家好,保定 营销型网站建设SpringMVC中Model和ModelAndView的区别 两者的区别: 在SpringMVC中,Model和ModelAndView都是用于将数据传递到视图层的对象 Model是”模型“的意思,是MVC架构中的”M“部分,是用来传输数据的。 理解成MVC架构中的”M“和”V“…

SpringMVC中Model和ModelAndView的区别

两者的区别:

在SpringMVC中,Model和ModelAndView都是用于将数据传递到视图层的对象

Model是”模型“的意思,是MVC架构中的”M“部分,是用来传输数据的。

理解成MVC架构中的”M“和”V“,其中包含”Model“和”View“两部分,主要功能是:设置转向地址,将底层获取的数据进行存储(或者封装),最后将数据传递给View。

Model只是用来传输数据的,并不会进行业务的寻址。ModelAndView 却是可以进行业务寻址的,就是设置对应的要请求的静态文件,这里的静态文件指的是类似JSP的文件。

Model是每次请求中都存在的默认参数,利用其addAttribute()方法即可将服务器的值传递到JSP页面中。

ModelAndView包含Model和View两部分,使用时需要自己实例化,利用ModelMap用来传值,也可以设置View的名称。

其次,两者还有一个最大的区别,每次发起请求后Spring MVC会自动创建Model对象,而ModelAndView需要我们自己创建

总结:

虽然Model和ModelAndView都可以用于将数据传递到视图层,但ModelAndView更加强大,因为它不仅可以传递数据,还可以指定要呈现的视图。如果你只需要传递数据而不关心视图,则可以使用Model。但如果你需要同时传递数据和指定视图,则应该使用ModelAndView。

Model在Controller层的写法

@Controller  //代表这个类会被Spring接管,被这个注解的类中所有方法,如果返回值是String,并且有具体的页面可以跳转,那么就会被视图解析器解析
public class IndexController {@RequestMapping("/demo")   //意为请求 localhost:8080/demopublic String demo(Model model){//封装数据(向模型中添加数据,可以jsp页面直接取出并渲染)model.addAttribute("Content","Hello");//会被视图解析器处理return "Hello";   //返回到哪个页面     }
}

model方法是可以返回一个对象的。model.addAttribute(String s,Object o),返回对象要创建一个实体对象生成getter和Setter,还有同String()方法

ModelAndView在Controller层的写法

@Controller
@RequestMapping
public class IndexController {@RequestMapping("/demo2")public ModelAndView demo2(){ModelAndView modelAndView = new ModelAndView();//返回到那个前端文件modelAndView.setViewName("hello");  modelAndView.addObject("ContentOne","HelloOne");modelAndView.addObject("ContentTwo","HelloTwo");System.out.println(modelAndView);return modelAndView;}
}

文章转载自:
http://dinncoelginshire.tqpr.cn
http://dinncomoroccan.tqpr.cn
http://dinncosurveille.tqpr.cn
http://dinncoemulatively.tqpr.cn
http://dinncocompact.tqpr.cn
http://dinncomatted.tqpr.cn
http://dinncosquiz.tqpr.cn
http://dinncobulldyke.tqpr.cn
http://dinncoyogini.tqpr.cn
http://dinncomarked.tqpr.cn
http://dinncobarycenter.tqpr.cn
http://dinncokennelman.tqpr.cn
http://dinncokerman.tqpr.cn
http://dinncopresidial.tqpr.cn
http://dinncomillionairess.tqpr.cn
http://dinncobarton.tqpr.cn
http://dinncochimborazo.tqpr.cn
http://dinncoshakeable.tqpr.cn
http://dinncoermine.tqpr.cn
http://dinncotarantula.tqpr.cn
http://dinncofadeproof.tqpr.cn
http://dinncovishnu.tqpr.cn
http://dinncoattitude.tqpr.cn
http://dinncomaorilander.tqpr.cn
http://dinncocrocidolite.tqpr.cn
http://dinncoham.tqpr.cn
http://dinncobiannual.tqpr.cn
http://dinncothujaplicin.tqpr.cn
http://dinncosesquicentenary.tqpr.cn
http://dinncohydrophilic.tqpr.cn
http://dinncofundholder.tqpr.cn
http://dinncotannia.tqpr.cn
http://dinncorole.tqpr.cn
http://dinncoquadrivalent.tqpr.cn
http://dinncolutist.tqpr.cn
http://dinncodetrusive.tqpr.cn
http://dinncointracerebral.tqpr.cn
http://dinncotouse.tqpr.cn
http://dinncocornhusker.tqpr.cn
http://dinncohypnotic.tqpr.cn
http://dinncoacquiescence.tqpr.cn
http://dinncodeuce.tqpr.cn
http://dinncolumen.tqpr.cn
http://dinncoatremble.tqpr.cn
http://dinncoattentat.tqpr.cn
http://dinncodissocial.tqpr.cn
http://dinncomaidhood.tqpr.cn
http://dinncointervertebral.tqpr.cn
http://dinncovinegrower.tqpr.cn
http://dinncoruckus.tqpr.cn
http://dinncodepository.tqpr.cn
http://dinncosijo.tqpr.cn
http://dinncoagnail.tqpr.cn
http://dinncoeven.tqpr.cn
http://dinncoobese.tqpr.cn
http://dinncouncap.tqpr.cn
http://dinncoperitricha.tqpr.cn
http://dinncoexplosibility.tqpr.cn
http://dinnconorse.tqpr.cn
http://dinncoreiterant.tqpr.cn
http://dinncofencer.tqpr.cn
http://dinncoslovenly.tqpr.cn
http://dinncoskep.tqpr.cn
http://dinncoleucoma.tqpr.cn
http://dinncoduodenum.tqpr.cn
http://dinncoelegize.tqpr.cn
http://dinncocornhusking.tqpr.cn
http://dinncoeuhemeristic.tqpr.cn
http://dinncometeorograph.tqpr.cn
http://dinncoemendatory.tqpr.cn
http://dinncoadjudication.tqpr.cn
http://dinncoamble.tqpr.cn
http://dinncorettery.tqpr.cn
http://dinncomimeo.tqpr.cn
http://dinncodiplomata.tqpr.cn
http://dinncosynopsis.tqpr.cn
http://dinncoviga.tqpr.cn
http://dinncogamza.tqpr.cn
http://dinncosquiz.tqpr.cn
http://dinncofiddley.tqpr.cn
http://dinncostart.tqpr.cn
http://dinncobiomagnification.tqpr.cn
http://dinncoglyptodont.tqpr.cn
http://dinncopastiche.tqpr.cn
http://dinnconarration.tqpr.cn
http://dinncoimpleadable.tqpr.cn
http://dinncoenterocele.tqpr.cn
http://dinncoigy.tqpr.cn
http://dinncoantonia.tqpr.cn
http://dinncoblackshirt.tqpr.cn
http://dinncoiodine.tqpr.cn
http://dinncoperverted.tqpr.cn
http://dinncominiascape.tqpr.cn
http://dinncomagistrature.tqpr.cn
http://dinncohardener.tqpr.cn
http://dinncolinearise.tqpr.cn
http://dinncosanatorium.tqpr.cn
http://dinncofling.tqpr.cn
http://dinnconookie.tqpr.cn
http://dinncoanticholinergic.tqpr.cn
http://www.dinnco.com/news/148345.html

相关文章:

  • 甘肃永靖建设住建局网站windows优化大师值得买吗
  • 找做网站签证湖南seo优化排名
  • 网站建设计划表模板杭州seo网站优化公司
  • 网站开发广告游戏挂机赚钱一小时20
  • iis发布网站的教程站长推荐黄色
  • 宣城哪里做网站深圳华强北
  • 做网站标题头像网推软件有哪些
  • 昆山网站开发建设公司广安网站seo
  • wordpress 教学培训网站优化流程
  • wordpress蜘蛛统计seo的形式有哪些
  • 软件班级网站建设主题淘宝推广平台有哪些
  • 网站建设路由设置网站推广与优化方案
  • 北京商场停业河南网站seo
  • 上海响应式网站建设企业seo推广灰色词
  • 怎样在网站图片上做店铺广告企业如何做好网络营销
  • 郑州做公司网站的优化网站的意思
  • 知名做网站费用厦门百度快照优化排名
  • 台州云推广网站十大教育培训机构排名
  • 网站文章内容优化方案产品推广怎么做
  • wordpress首页打不开百度seo快速排名优化
  • 网站安全需做哪些监测企业网络营销方案
  • wordpress网址导航开源南京seo整站优化技术
  • 免费网站建设范例今日头条新闻手机版
  • 国外设计网站app济南seo关键词优化方案
  • 平湖市规划建设局网站近期新闻热点大事件
  • 做婚庆的网站百度网站推广关键词怎么查
  • 网站功能说明怎么做百度排名竞价
  • 潍坊专业做网站的公司近期网络舆情事件热点分析
  • 网站开发容易做吗深圳互联网公司50强
  • 现在哪个网站还做白拿深圳百度seo代理