Spring之Model

Posted 剑姬

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring之Model相关的知识,希望对你有一定的参考价值。

初学Spring,上课老师讲解的是ModelAndView,而Spring4.0实战书上用Model,那么他们之间的区别是什么呢?

首先要去看源代码咯,书上只有这个<import org.springframework.ui.Model>导包过程,其实起源代码在

<spring-context-4.1.3.RELEASE-sources.jar>中;

源代码中发现Model是一个接口,Model实际上就是个Map(key-value的集合),

书上用的Model addAttribute(Object attributeValue);此方法Spring框架会自动为他生成key,假如是value值是Spittle,那么key为spittleList

package org.springframework.ui;

import java.util.Collection;
import java.util.Map;

public interface Model {

      Model addAttribute(String attributeName, Object attributeValue);

      Model addAttribute(Object attributeValue);

      Model addAllAttributes(Collection<?> attributeValues);

      Model addAllAttributes(Map<String, ?> attributes);

      Model mergeAttributes(Map<String, ?> attributes);

      boolean containsAttribute(String attributeName);

      Map<String, Object> asMap();
}

  

 

以上是关于Spring之Model的主要内容,如果未能解决你的问题,请参考以下文章

初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段

初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段

Spring boot:thymeleaf 没有正确渲染片段

面向面试编程代码片段之GC

What's the difference between @Component, @Repository & @Service annotations in Spring?(代码片段

spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段