框架笔记
框架学习笔记
阿呆-jm
一点一滴的进步,是我唯一能做的
展开
-
spring boot 使用thymeleaf模板出现问题
找不到模板异常 异常信息: Error resolving template [index], template might not exist or might not be accessible by any of the configured Template Resolvers 查看ThymeleafProperties类(位于org.springframework.boot.autoconfigure.thymeleaf)中发现: public class ThymeleafProperties原创 2020-06-03 09:47:38 · 1011 阅读 · 0 评论 -
Spring framework 笔记
spring 1. 什么是spring spring是J2EE应用程序框架,是轻量级的IoC和AOP的容器框架,主要是针对javaBean的生命周期进行管理的轻量级容器。 2. 框架概述 IoC(Inversion of Control)控制反转 对象创建责任的反转,在spring中BeanFactory 是IoC容器的核心接口,负责实例化,定位,配置应用程序中的对象及建立这些对象间的依赖。 XmlBeanFactory实现BeanFactory接口,通过获取xml配置文件数据,组成应用对象及对 象间的原创 2020-05-27 17:02:01 · 1035 阅读 · 0 评论