org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'adminMenuController': Unsatisfied dependency expresse ...
分类:
编程语言 时间:
2020-12-08 13:00:18
阅读次数:
17
代码 package com.itgacl.magic4j.common.config; import com.itgacl.magic4j.libcommon.component.resolver.Magic4jMethodArgumentResolver; import com.itgacl.m ...
分类:
移动开发 时间:
2020-12-07 12:27:40
阅读次数:
14
核心容器(Core Containe) 核心容器提供了Spring框架的基本功能,是其它模块建立的基础,有 spring-core、spring-beans、spring-context、spring-context-support和spring-expression(Expression Lang ...
分类:
编程语言 时间:
2020-12-03 11:34:23
阅读次数:
5
java beans specification 9 customization When a user is composing an application in an application builder we want to allow them tocustomize the appea ...
分类:
编程语言 时间:
2020-11-30 15:28:01
阅读次数:
7
Spring核心关键图 Spring一共有十几个组件,但是真正核心的组件只有几个: 从这个图中可以看到,Spring框架的核心只有三个:Core(核心),Beans(类),Context(内容),他们构建起了整个Spring的骨骼架构,没有他们就不可能有AOP、Web等上层的特性功能 比较重要的几个 ...
分类:
编程语言 时间:
2020-11-23 12:18:04
阅读次数:
7
【1】Spring IOC 基础 文件名 说明 beans.xml 定义需要实例化对象的类的全限定类名以及类之间依赖关系描述。 BeanFactory.java 通过反射技术来实例化对象并维护对象之间的依赖关系。 Spring框架的IOC实现(3种): 纯xml(bean信息定义全部配置在xml中) ...
分类:
编程语言 时间:
2020-11-19 12:36:03
阅读次数:
6
Maven依赖冲突的解决方式 对Maven概念还不了解的可以看看我的这篇文章: https://blog.csdn.net/pjh88/article/details/108520721 在讲依赖冲突之前我们先来讲讲什么是依赖传递 在maven中依赖是可以传递的,比如我们有A,B,C三个项目,其中A ...
分类:
其他好文 时间:
2020-11-17 12:53:32
阅读次数:
10
Spring流程Debug 1.1 Spring测试环境搭建 Spring模块概览,绿色是模块,Spring中八大模块,黑色表示该模块包含的jar包(组件)。例如我们想要用IOC容器,也就是绿色的CoreContainer,我们需要导入Beans,Core,Context,SpEL(spring-e ...
分类:
编程语言 时间:
2020-11-08 16:41:17
阅读次数:
17
1、 生成publicKey和password 找到maven资源库中druid的jar包,如:C:\Users\a\.m2\repository\com\alibaba\druid\1.1.6,其中a为用户名。 打开cmd,将路径切换至C:\Users\a\.m2\repository\com\a ...
分类:
数据库 时间:
2020-11-06 02:10:35
阅读次数:
32
#Spring-AOP 1、AOP 基本概念 (1)面向切面编程(方面),利用 AOP 可以对业务逻辑的各个部分进行隔离,从而使得 业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。 (2)通俗描述:不通过修改源代码方式,在主干功能里面添加新功能 (3)使用登录例子说明 AO ...
分类:
编程语言 时间:
2020-11-04 19:07:25
阅读次数:
29