上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 17 下一页
摘要: 1.根据需求划分模块(Dao、Service、Controller): 2.通过maven引入相关的jar包依赖: service模块的pom: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.or 阅读全文
posted @ 2020-04-17 02:59 shouyaya 阅读(242) 评论(0) 推荐(0) 编辑
摘要: a、出现异常:org.apache.ibatis.binding.BindingException: Invalid bound statement (not found) 6、这是一个很容易忽视的点,记住:接口名与Mybatis的映射文件名一定要一模一样。如图: 7、mybatis的mapper配 阅读全文
posted @ 2020-04-17 02:25 shouyaya 阅读(147) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:s 阅读全文
posted @ 2020-04-14 20:28 shouyaya 阅读(203) 评论(1) 推荐(0) 编辑
摘要: 1.使用maven引用依赖 <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> </dependency> <!-- https://m 阅读全文
posted @ 2020-04-04 21:06 shouyaya 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 1.使用maven引入依赖: <dependency> <groupId>aopalliance</groupId> <artifactId>aopalliance</artifactId> <version>1.0</version> </dependency> <dependency> <gro 阅读全文
posted @ 2020-03-24 20:36 shouyaya 阅读(386) 评论(0) 推荐(0) 编辑
摘要: 1.使用maven引入依赖: <dependency> <groupId>aopalliance</groupId> <artifactId>aopalliance</artifactId> <version>1.0</version> </dependency> <dependency> <gro 阅读全文
posted @ 2020-03-23 21:31 shouyaya 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 相关术语: spring底层生成代理有两种模式:JDK动态代理(对象必须实现了接口)和CGLIB生成代理(对象可不需实现接口) 1.maven引入两个依赖: <dependency> <groupId>org.springframework</groupId> <artifactId>spring- 阅读全文
posted @ 2020-03-23 00:27 shouyaya 阅读(162) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance 阅读全文
posted @ 2020-03-19 23:16 shouyaya 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 1.使用注解的方式需要配置applicationContext.xml: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http 阅读全文
posted @ 2020-03-19 23:09 shouyaya 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 1.通过maven建立spring依赖: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSc 阅读全文
posted @ 2020-03-17 23:30 shouyaya 阅读(155) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 17 下一页