AOP 作用: 可以帮助你抽取共性内容, 简化我们书写, 增强我们的简单类!!!!! 概念: 面向切面编程(横向开发) OOP: 面向对象编程(竖向开发) 专业名词 连接点 指我们所有的方法 切入点 那些想要被增强的方法 切入点表达式 完整写法 execution(修饰符 返回值类型 包名.类名.方 ...
分类:
编程语言 时间:
2021-01-28 12:05:29
阅读次数:
0
1、什么是类加载器 类加载器负责加载class文件,class文件在文件的开头有特定的文件标识,将class文件字节码内容加载到内存中,并将这些内容转换成方法区中的运行时数据结构。 Class Loader只负责class文件的加载,至于他是否可以运行,则由Execution Engine决定。 并 ...
分类:
其他好文 时间:
2021-01-19 12:17:55
阅读次数:
0
1. 设置执行引擎 set hive.execution.engine=mr;set hive.execution.engine=spark; 如果设置执行引擎为MR,那么调用Hadoop的maprecude来运行需要执行的job的程序; 如果设置执行引擎为spark,那么就会调用spark来执行任 ...
分类:
其他好文 时间:
2021-01-15 12:15:21
阅读次数:
0
execution( * concert.Performance.perform(..) ) execution 在方法执行时触发 * 返回任意类型 concert.Performance.perform 方法所属的类+方法名 .. 使用任意参数 execution( * concert.Perfo ...
分类:
其他好文 时间:
2021-01-15 11:58:40
阅读次数:
0
上篇中说到通过@Value注解获取配置中心的内容进行注入,要想了解这个就要知道spring Environment原理,关于这原理我看了下网上分析的文章:https://blog.csdn.net/topdeveloperr/article/details/88063828 一、Environmen ...
分类:
编程语言 时间:
2021-01-05 11:26:47
阅读次数:
0
安装淘宝镜像 npm install -g cnpm --registry=https://registry.npm.taobao.org ...
分类:
Web程序 时间:
2021-01-05 10:34:10
阅读次数:
0
IDEA2020FILE->NewprojectSettings->SettingsfornewProjectsBulid,Execution,Deployment->BuildTools->mavne里面配置默认maven配置IDEA2019FILE-->otherSetting
分类:
其他好文 时间:
2021-01-02 10:30:50
阅读次数:
0
ESLint提示: ESLint is disabled since its execution has not been approved or denied yet. Use the light bulb menu to open the approval dialog. 原因分析:ESLint ...
分类:
其他好文 时间:
2020-12-21 11:28:14
阅读次数:
0
PowerShell scripts Run PowerShell on Windows as a administrator. And set the execution policy. Set-ExecutionPolicy Unrestricted Following is a simple ...
分类:
Web程序 时间:
2020-12-10 10:45:47
阅读次数:
6
定义:A property of an execution context (global, function or eval) that, in non–strict mode, is always a reference to an object and in strict mode can b ...
分类:
其他好文 时间:
2020-12-07 12:36:53
阅读次数:
6