上一页 1 2 3 4 5 6 ··· 14 下一页
摘要: 1.Spring大杂烩 别忘了,对于MVC中的所有bean,我们都要将其放到Spring的IOC容器当中去。 2.SpringMVC的作用 3.简单使用 首先配置web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http:/ 阅读全文
posted @ 2020-09-02 12:48 why666 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 1.导入各种jar包 <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> </dependency> <dependency> <gro 阅读全文
posted @ 2020-09-01 22:14 why666 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 简单整合一下,Spring+SpringMVC+Mybatis还要在更仔细整合 1.maven下的mybatis.xml <!-- junit进行单元测试--> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> 阅读全文
posted @ 2020-09-01 18:43 why666 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 1.使用注解 <!-- 配置方式三:注解--> <!-- 自动代理 默认是使用jdk的代理 false是jdk的,true是cglib通过aop命名空间的<aop:aspectj-autoproxy />声明自动为spring容器中那些配置@aspectJ切面的bean创建代理,织入切面。--><a 阅读全文
posted @ 2020-09-01 16:25 why666 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 1.自定义一个类,啥接口也不用实现 package com.why.aop; import org.springframework.stereotype.Component; /** * @program: AOP * @description: * @author: @why * @create: 阅读全文
posted @ 2020-08-31 22:24 why666 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 代理模式:动态代理和静态代理要先学会,aop就是根据动态代理实现的 1.概念 面向切面编程,通过预编译方式和运行期间动态代理实现程序功能的统一维护的一种技术。AOP是OOP的延续,是软件开发中的一个热点, 也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用AOP可以对业务逻辑的各 阅读全文
posted @ 2020-08-31 22:07 why666 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 1.一个实体类,搞里头 package com.why.bean; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Configurati 阅读全文
posted @ 2020-08-31 16:21 why666 阅读(118) 评论(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-08-31 15:21 why666 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 1.测试自动装配 一个人有2个宠物:人的类里面有2个宠物的类引用 1.1 byName自动装配 <!-- byname:就是在xml中找和我们set后面一样的bean的id/name 一样就给装上 --> <!-- 如上面的cat spring就自动找到他 将他装上了 改为cats就找不到了--> 阅读全文
posted @ 2020-08-31 14:31 why666 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 1.singleton单例 (https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#beans-factory-scopes-singleton) 容器仅仅创建一个对象,所有引用都仅仅使用这一个 阅读全文
posted @ 2020-08-31 14:11 why666 阅读(107) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 14 下一页