摘要: 静态资源访问不到 springmvc.xml进行配置 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3. 阅读全文
posted @ 2020-08-25 09:36 幻竹 阅读(93) 评论(0) 推荐(0)
摘要: 四种请求参数 基本数据类型参数 POJO类型参数 数组类型参数 集合类型参数 基本数据类型参数 Controller中的业务方法的参数名称要和请求参数名称一致,参数将自动映射匹配 @RequestMapping("/request1") public void request1(int age,in 阅读全文
posted @ 2020-08-24 20:27 幻竹 阅读(151) 评论(0) 推荐(0)
摘要: 数据响应方式 package com.example.demo.controller; import com.example.demo.domain.User; import com.fasterxml.jackson.databind.ObjectMapper; import org.spring 阅读全文
posted @ 2020-08-23 20:49 幻竹 阅读(111) 评论(0) 推荐(0)
摘要: Spring集合Web环境 <?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-in 阅读全文
posted @ 2020-08-21 09:21 幻竹 阅读(146) 评论(0) 推荐(0)
摘要: 以xml的方式 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema- 阅读全文
posted @ 2020-08-20 10:55 幻竹 阅读(180) 评论(0) 推荐(0)
摘要: 编程式事务控制相关对象 PlatformTransactionManager PlatformTransactionManager:平台事务管理器,指定事务是怎么控制的 TransactionDefintion TransactionDefintion:事务的定义对象,维护事务的一些参数信息 Tra 阅读全文
posted @ 2020-08-18 20:15 幻竹 阅读(116) 评论(0) 推荐(0)
摘要: 导入坐标 <?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" x 阅读全文
posted @ 2020-08-18 19:18 幻竹 阅读(97) 评论(0) 推荐(0)
摘要: aop术语 JoinPoint(连接点): 可以增强的方法 PointCut(切入点): 需要被增强的方法 Advice(通知/增强): 封装增强业务逻辑代码的方法 Aspect(切面): 切点+通知 Weaving(织入): 通知与切入点结合的过程 切点表达式 表达式写法 execution([修 阅读全文
posted @ 2020-08-16 23:03 幻竹 阅读(133) 评论(0) 推荐(0)
摘要: jdk动态代理 import com.example.demo.jdk.Advice; import com.example.demo.jdk.Target; import com.example.demo.jdk.TargetInterface; import org.junit.Test; im 阅读全文
posted @ 2020-08-16 18:48 幻竹 阅读(76) 评论(0) 推荐(0)
摘要: Spring注解 原始注解 新注解 注解开发 Spring核心配置文件 package com.example.demo.config; import org.springframework.context.annotation.*; import javax.annotation.PostCons 阅读全文
posted @ 2020-08-13 16:13 幻竹 阅读(139) 评论(0) 推荐(0)