上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 29 下一页
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1,minimum-scale=1.0,ma 阅读全文
posted @ 2021-11-01 15:11 蘑菇王国大聪明 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 1.文件目录结构 2.MyBatis配置 创建数据库环境 CREATE DATABASE `ssmbuild`; USE `ssmbuild`; DROP TABLE IF EXISTS `books`; CREATE TABLE `books` ( `bookID` INT(10) NOT NUL 阅读全文
posted @ 2021-11-01 12:51 蘑菇王国大聪明 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 1.所需文件 2.pom中加入json <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSc 阅读全文
posted @ 2021-10-31 21:09 蘑菇王国大聪明 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 1.准备文件 2.工程中的pom <?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 阅读全文
posted @ 2021-10-31 16:47 蘑菇王国大聪明 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 1.建立的文件 2.servlet package com.shao.servlet; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.Ht 阅读全文
posted @ 2021-10-29 20:27 蘑菇王国大聪明 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 1.spring-dao.xml修改 参考上面工程配置 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.spri 阅读全文
posted @ 2021-10-29 15:10 蘑菇王国大聪明 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 1.所需目录 2.配置porn.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSch 阅读全文
posted @ 2021-10-28 21:23 蘑菇王国大聪明 阅读(28) 评论(0) 推荐(0) 编辑
摘要: applicationContext.xml <!--方法三:注解支持--> <bean id="point" class="com.shao.diy.PointCut"/> <aop:aspectj-autoproxy/> package com.shao.diy; import org.aspe 阅读全文
posted @ 2021-10-26 10:18 蘑菇王国大聪明 阅读(29) 评论(0) 推荐(0) 编辑
摘要: applicationContext.xml <!--方法二 自定义类--> <bean id="diyPointCut" class="com.shao.diy.DiyPointCut"/> <aop:config> <aop:aspect ref="diyPointCut" > <!--切入点- 阅读全文
posted @ 2021-10-26 09:56 蘑菇王国大聪明 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 1.创建相应的类 2.代码 service沿用前面的 增加两个log Log.java package com.shao.log; import org.springframework.aop.MethodBeforeAdvice; import java.lang.reflect.Method; 阅读全文
posted @ 2021-10-26 09:38 蘑菇王国大聪明 阅读(24) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 29 下一页