码迷,mamicode.com
首页 >  
搜索关键字:contex    ( 2292个结果
Spring boot 出现 "org.springframework.beans.factory.UnsatisfiedDependencyException" 错误
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'adminMenuController': Unsatisfied dependency expresse ...
分类:编程语言   时间:2020-12-08 13:00:18    阅读次数:17
vue-公共组件的注册
注册公共组件,在每个需要的页面直接输入文件名(<g-table/>)即可引用该组件 步骤: 1.新建components/global文件夹,以及components/global/g-table.vue文件。 2.新建untils/globalComponents-register.js,内容: ...
分类:其他好文   时间:2020-12-08 12:59:03    阅读次数:7
Dubbo多注册中心配置
Dubbo常用的注册中心有Zookeeper、Nacos、Redis,目前项目中使用Zookeeper作为注册中心。 service-xxx-dubbo.xml配置如下: <dubbo:application name="${dubbo.applicationName}" /> <dubbo:reg ...
分类:其他好文   时间:2020-12-07 11:58:24    阅读次数:3
Spring是什么?
Spring是一个轻量级的IoC和AOP容器框架。是为Java应用程序提供基础性服务的一套框架,目的是用于简化企业应用程序的开发,它使得开发者只需要关心业务需求。常见的配置方式有三种:基于XML的配置、基于注解的配置、基于Java的配置。 主要由以下几个模块组成: Spring Core:核心类库, ...
分类:编程语言   时间:2020-12-04 11:27:37    阅读次数:5
Exception in thread "main" java.sql.SQLException: ORA-01017: invalid username/password; logon denied
在用spring配置文件applicationContext.xml中引入src下的properties文件 <context:property-placeholder location="classpath:jdbc.properties"/> <!-- DriveManagerDataSourc ...
分类:数据库   时间:2020-12-03 11:37:52    阅读次数:11
Spring MVC
Spring MVC 运行流程 Spring MVC 将所有的请求都提交给 DispatcherServlet,它会委托应用系统的其他模块负责对请求进行真正的处理工作。 DispatcherServlet 查询一个或多个 HandlerMapping,找到处理请求的 Controller. Disp ...
分类:编程语言   时间:2020-12-01 11:58:19    阅读次数:25
Servlet
web相关概念回顾 1. 软件架构 1. C/S:客户端/服务器端 2. B/S:浏览器/服务器端 2. 资源分类 1. 静态资源:所有用户访问后,得到的结果都是一样的,称为静态资源.静态资源可以直接被浏览器解析 * 如: html,css,JavaScript 2. 动态资源:每个用户访问相同资源 ...
分类:其他好文   时间:2020-11-30 15:19:17    阅读次数:3
Spring内置的定时任务调度@Scheduled
Spring提供了@Scheduled注解用于定时任务。 一、@Scheduled的基本使用 启用调度支持:@EnableScheduling 可以将@Scheduled注释与触发器元数据一起添加到方法中。例如,以下方法每隔5秒调用一次,并具有固定的延迟,这意味着周期是从前面每次调用的完成时间开始计 ...
分类:编程语言   时间:2020-11-25 12:35:26    阅读次数:6
java测试类
`import org.junit.runner.RunWith; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJ ...
分类:编程语言   时间:2020-11-21 12:46:32    阅读次数:25
ensure that AopContext.currentProxy() is invoked in the same thread as the AOP invocation context
Cannot find current proxy: Set 'exposeProxy' property on Advised to 'true' to make it available, and ensure that AopContext.currentProxy() is invoked ...
分类:其他好文   时间:2020-11-18 12:32:47    阅读次数:7
2292条   上一页 1 ... 4 5 6 7 8 ... 230 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!