摘要:
https://www.cnblogs.com/xues/p/11810310.html https://www.jianshu.com/p/f8a50f926900 阅读全文
摘要:
https://www.cnblogs.com/l-y-h/p/12458777.html#_label0_3 阅读全文
摘要:
一、service层 【添加数据:(增)】 default boolean save(T entity); // 调用 BaseMapper 的 insert 方法,用于添加一条数据。 boolean saveBatch(Collection<T> entityList, int batchSize 阅读全文
摘要:
需要有的储知识: Spring横切面(advice),增强(advisor),切入点(PointCut) Spring-AOP 自动创建代理之DefaultAdvisorAutoProxyCreator 例子: https://blog.csdn.net/weixin_42196915/articl 阅读全文
摘要:
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:sc 阅读全文
摘要:
ContextLoaderListener作用详解 https://www.cnblogs.com/xunyi/p/10363290.html SpringMVC容器和Spring容器: Tomcat&Jetty在启动时给每个Web应用创建一个全局的上下文环境,这个上下文就是ServletConte 阅读全文
摘要:
SpringMVC项目配置欢迎页面为index.html 阅读全文
摘要:
https://www.cnblogs.com/lenve/p/10748453.html 阅读全文
摘要:
它就比Spring稍微简单点,因为Boot已经做好了很多事。 在 Spring Boot 中,默认情况下,一共有5个位置可以放静态资源,五个路径分别是如下5个: classpath:/META-INF/resources/ classpath:/resources/ classpath:/stati 阅读全文
摘要:
1、Spring2.5之前,我们都是通过实现Controller接口或其实现来定义我们的处理器类。显然现在已经不推荐这么做了 2、Spring2.5引入注解式处理器支持,通过@Controller 和 @RequestMapping注解定义我们的处理器类。并且有一批注解都是这个时候出来的: 1. @ 阅读全文