大三东软暑期实训-spring篇1

Posted Fire king

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了大三东软暑期实训-spring篇1相关的知识,希望对你有一定的参考价值。

  • spring框架的依赖包直接搜spring-web-mvc
  • spring框架集成了springmvc,故spring-web-mvc包含了springmvc框架的依赖包
  • 创建的maven项目,ctr+shift+/
 <!--可删-->
  <name>spring20210602</name>
  <!-- FIXME change it to the project's website -->
  <url>http://www.example.com</url>

  <!--1.7全改为1.8-->
  <!--ctr+shift+/-->
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
  </properties>
  • map中key唯一,对应了bean中id唯一,通过id获取对象
    在这里插入图片描述
  • 单元测试方法只能写void,无参
  • Student student = (Student) context.getBean("student");强制转换验证了上图存的时候对象向上转型为Object类型,又或者Student student = context.getBean("student",Student.class);
  • c+d复制,c+y删除
  • spring创建对象默认单例,scope默认singleton,scope改为prototype实现多例
  • 在生成getter和setter的时候ctr+shift+点最后一个属性实现全选
  • sout是System.out.println的快捷
  • 所有类都继承自Object类的toString方法输出全限定类名hashcode,生成的toString都是覆盖Object类的,在使用System.out.println就会调用toString方法。

以上是关于大三东软暑期实训-spring篇1的主要内容,如果未能解决你的问题,请参考以下文章

大三东软暑期实训-SSM整合篇

大三东软暑期实训-springmvc篇

大三东软暑期实训-springboot整合篇

大三东软暑期实训-SSM实战篇

大三东软暑期实训-mybatis篇

天津东软实训第五天