傻傻凉面

文章
5
资源
0
加入时间
3年1月13天

9 Web开发——springmvc自动配置原理

官方文档目录:https://docs.spring.io/spring-boot/docs/2.1.0.RELEASE/reference/htmlsingle/#boot-features-spring-mvc1. Spring MVC auto-configuration  Spring Boot 自动配置好了SpringMVC,以下是SpringBoot对Sp...

java中Collections对自定义对象进行sort()

基础学生类package itcast02;public class Student implements Comparable<Student> { // 学生姓名 private String name; // 学生年龄 private int age; // 无参构造 public Student() { super();