Spring(4)AOP

1、AOP概述

在软件业,AOP为Aspect Oriented Programming的缩写,意为:面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术。AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。

简单的说它就是把我们程序重复的代码抽取出来,在需要执行的时候,使用动态代理的技术,在不修改源码的

基础上,对我们的已有方法进行增强。

作用:

在程序运行期间,不修改源码对已有方法进行增强。

优势:

减少重复代码、提高开发效率、维护方便

2、动态代理

2.1、动态代理的特点

字节码随用随创建,随用随加载。

它与静态代理的区别也在于此。因为静态代理是字节码一上来就创建好,并完成加载。

装饰者模式就是静态代理的一种体现。

2.2、动态代理的两种方式

基于接口的动态代理

提供者:JDK 官方的 Proxy 类。

要求:被代理类最少实现一个接口。

基于子类的动态代理

提供者:第三方的 CGLib,如果报 asmxxxx 异常,需要导入 asm.jar。

要求:被代理类不能用 final 修饰的类(最终类)。

2.2.1、基于接口的动态代理

被代理的类

  1. public interface IProducer {
  2. public void saleProduct(float money);
  3. public void afterService(float money);
  4. }
  5. ============================================
  6. public class Producer implements IProducer {
  7. public void saleProduct(float money){
  8. System.out.println("售出产品,价格:" + money);
  9. }
  10. public void afterService(float money){
  11. System.out.println("提供售后服务,价格:" + money);
  12. }
  13. }

使用 JDK 官方的 Proxy

  1. import java.lang.reflect.InvocationHandler;
  2. import java.lang.reflect.Method;
  3. import java.lang.reflect.Proxy;
  4. public class client {
  5. public static void main(String[] args) {
  6. final Producer producer = new Producer();
  7. //producer.saleProduct(10000f);
  8. /**
  9. * 动态代理:
  10. * 特点:字节码随用随创建,随用随加载
  11. * 资源:在不修改源码的情况下对方法增强
  12. * 分类:
  13. * 基于接口的动态代理
  14. * 基于子类的动态代理
  15. * 基于接口:
  16. * 涉及到类:proxy
  17. * 提供者:JDK官方
  18. * 如何创建代理对象:
  19. * 使用proxy中的newPoxyInstance方法
  20. * 创建代理对象的要求:
  21. * 被代理对象必须有接口,如果没有则不能使用
  22. * newProxyInstance参数:
  23. * classLoader:类加载器
  24. * 用于加载代理对象的字节码,和被代理对象使用相同的类加载器。固定写法
  25. * Class[]:字节码数组
  26. * 让代理对象和被代理对象拥有相同方法。写法固定
  27. * InvocationHandler:用于增强的代码
  28. * 它让我们写如何代理,一般写该接口的实现类,通常情况是匿名内部类,但不是必须的
  29. * 此接口谁用谁写
  30. */
  31. IProducer proxyProduec = (IProducer)Proxy.newProxyInstance(producer.getClass().getClassLoader()
  32. , producer.getClass().getInterfaces(),
  33. new InvocationHandler() {
  34. /**
  35. * 作用:执行的被代理对象的方法都会经过此方法
  36. * @param proxy 代理对象的引用
  37. * @param method 当前执行的方法
  38. * @param args 被代理对象方法的参数
  39. * @return 被代理对象方法的返回值
  40. * @throws Throwable
  41. */
  42. public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
  43. Object rtValue = null;
  44. Float money = (Float)args[0];
  45. if("saleProduct".equals(method.getName())){
  46. rtValue = method.invoke(producer, money * 0.8f);
  47. }
  48. return rtValue;
  49. }
  50. });
  51. proxyProduec.saleProduct(10000f);
  52. }
  53. }

22.2、基于子类的动态代理

被代理的类


  1. public class Producer {
  2. public void saleProduct(float money){
  3. System.out.println("售出产品,价格:" + money);
  4. }
  5. public void afterService(float money){
  6. System.out.println("提供售后服务,价格:" + money);
  7. }
  8. }

使用 CGLib 的 的 Enhancer

  1. import net.sf.cglib.proxy.Enhancer;
  2. import net.sf.cglib.proxy.MethodInterceptor;
  3. import net.sf.cglib.proxy.MethodProxy;
  4. import java.lang.reflect.Method;
  5. public class client {
  6. public static void main(String[] args) {
  7. final Producer producer = new Producer();
  8. //producer.saleProduct(10000f);
  9. /**
  10. * 动态代理:
  11. * 特点:字节码随用随创建,随用随加载
  12. * 资源:在不修改源码的情况下对方法增强
  13. * 分类:
  14. * 基于接口的动态代理
  15. * 基于子类的动态代理
  16. * 基于接口:
  17. * 涉及到类:Enhancer
  18. * 提供者:第三方
  19. * 如何创建代理对象:
  20. * 使用Enhancer中的create方法
  21. * 创建代理对象的要求:
  22. * 代理类不是最终类
  23. * create参数:
  24. * Class:字节码
  25. * 指定被代理对象的字节码
  26. * Callback:提供增强代码
  27. * 写如何代理,一般是写一个该接口实现类
  28. * 此接口谁用谁写
  29. * 一般写的是该接口的子接口实现类MethodInterceptor
  30. */
  31. Producer p = (Producer) Enhancer.create(producer.getClass(), new MethodInterceptor() {
  32. /**
  33. * 作用:执行的被代理对象的方法都会经过此方法
  34. * @param obj
  35. * @param method
  36. * @param args
  37. * 以上三个参数与基于接口的代理作用相同
  38. * @param proxy 当前方法的代理对象
  39. * @return
  40. * @throws Throwable
  41. */
  42. public Object intercept(Object obj, Method method, Object[] args, MethodProxy proxy) throws Throwable {
  43. Object rtValue = null;
  44. Float money = (Float)args[0];
  45. if("saleProduct".equals(method.getName())){
  46. rtValue = method.invoke(producer, money * 0.8f);
  47. }
  48. return rtValue;
  49. }
  50. });
  51. p.saleProduct(10000f);
  52. }
  53. }

3、spring中的AOP

3.1、AOP相关术语

Joinpoint( 连接点):

所谓连接点是指那些被拦截到的点。在 spring 中,这些点指的是方法,因为 spring 只支持方法类型的连接点。

Pointcut( 切入点):

所谓切入点是指我们要对哪些 Joinpoint 进行拦截的定义。

Advice( 通知/ 增强):

所谓通知是指拦截到 Joinpoint 之后所要做的事情就是通知。

通知的类型:前置通知,后置通知,异常通知,最终通知,环绕通知。

Introduction( 引介):

引介是一种特殊的通知在不修改类代码的前提下, Introduction 可以在运行期为类动态地添加一些方法或 Field。

Target( 目标对象):

代理的目标对象。

Weaving( 织入):

是指把增强应用到目标对象来创建新的代理对象的过程。

spring 采用动态代理织入,而 AspectJ 采用编译期织入和类装载期织入。

Proxy (代理):

一个类被 AOP 织入增强后,就产生一个结果代理类。

Aspect( 切面):

是切入点和通知(引介)的结合。

3.2、AOP的工作流程

开发阶段(我们做的)

编写核心业务代码,把公用代码抽取出来,制作成通知。在配置文件中,声明切入点与通知间的关系,即切面。

运行阶段(Spring 框架完成的)

Spring 框架监控切入点方法的执行。一旦监控到切入点方法被运行,使用代理机制,动态创建目标对象的代理对象,根据通知类别,在代理对象的对应位置,将通知对应的功能织入,完成完整的代码逻辑运行。

关于代理的选择

在 spring 中,框架会根据目标类是否实现了接口来决定采用哪种动态代理的方式。

3.3、基于 XML 的 的 AOP

基于案例描述

案例:在service类的方法执行时加入日志

service类

  1. public interface IAccountService {
  2. /**
  3. * 保存账户
  4. */
  5. void saveAccount();
  6. /**
  7. * 更新账户
  8. * @param i
  9. * @return
  10. */
  11. void updateAccount(int i);
  12. /**
  13. * 删除账户
  14. * @return
  15. */
  16. int deleteAccount();
  17. }
  18. ===================================
  19. public class AccountServiceImpl implements IAccountService {
  20. public void saveAccount() {
  21. System.out.println("执行了保存");
  22. }
  23. public void updateAccount(int i) {
  24. System.out.println("执行了更新" + i);
  25. }
  26. public int deleteAccount() {
  27. System.out.println("执行了删除");
  28. return 0;
  29. }
  30. }

Logger日志

  1. /**
  2. * 用于记录日志的工具类
  3. */
  4. public class Logger {
  5. public void printLog(){
  6. System.out.println("Logger类中的printLog执行日志记录。。。");
  7. }
  8. }

配置文件

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:aop="http://www.springframework.org/schema/aop"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans
  6. http://www.springframework.org/schema/beans/spring-beans.xsd
  7. http://www.springframework.org/schema/aop
  8. http://www.springframework.org/schema/aop/spring-aop.xsd">
  9. <!--配置spring的IOC把service对象配置-->
  10. <bean id="accountService" class="wf.service.impl.AccountServiceImpl"></bean>
  11. <!--spring开启基于xml的aop配置
  12. 1.把通知bean配置
  13. 2.使用aop:config配置表明开始配置aop
  14. 3.使用aop:aspect标签表明配置切面
  15. id属性:给切面一个唯一标识
  16. ref属性:指定通知类的bean
  17. 4.在aop:aspect标签内部使用对应的标签来配置通知类型
  18. 示例是让pringLog方法在切入点方法前执行所以使用前置通知
  19. aop:before:表明前置通知
  20. method属性:用于指定使用logger类中哪一个方法作为前置通知
  21. pointcut属性:用于指定切入点表达式,该表达式含义指对业务层哪一个方法增强
  22. 切入点表达式的写法:
  23. 关键字:execution(表达式)
  24. 表达式:
  25. 访问修饰符 返回值 包名.包名....类名.方法名(参数列表)
  26. 标准表达式的写法:
  27. public void wf.service.impl.AccountServiceImpl.saveAccount()
  28. 访问修饰符可以省略
  29. void wf.service.impl.AccountServiceImpl.saveAccount()
  30. 返回值可以用通配符,表示任意返回值
  31. * wf.service.impl.AccountServiceImpl.saveAccount()
  32. 包名可以使用通配符表示任意包,但有几级包就用几个*.
  33. * *.*.*.AccountServiceImpl.saveAccount()
  34. 包名可以再升级,使用..表示当前包和其子包
  35. * *..AccountServiceImpl.saveAccount()
  36. 类名和方法名都可以使用*进行通配
  37. * *..*.*()
  38. 参数列表:
  39. 可以直接写数据类型:
  40. 基本类型直接写名称 int
  41. 引用类型写包名.类名的方式 java.lang.String
  42. * *..*.*(int)
  43. 可以使用通配符表示任意类型,但方法必须有参数
  44. * *..*.*(*)
  45. 可以使用..表示任意类型,且有无参数均可
  46. * *..*.*(..)
  47. 全通配写法:
  48. * *..*.*(..)
  49. 实际开发切入点的通常写法
  50. 切入到业务层实现类下的所有方法
  51. * wf.service.impl.*.*(..)
  52. -->
  53. <bean id="logger" class="wf.utils.Logger"></bean>
  54. <!--配置aop-->
  55. <aop:config>
  56. <aop:aspect id="logAdvice" ref="logger">
  57. <aop:before method="printLog" pointcut="execution(* wf.service.impl.*.*(..))"></aop:before>
  58. </aop:aspect>
  59. </aop:config>
  60. </beans>

3.3.1、AOP中通知的配置

  1. import org.aspectj.lang.ProceedingJoinPoint;
  2. /**
  3. * 用于记录日志的工具类
  4. */
  5. public class Logger {
  6. /**
  7. * 前置通知
  8. */
  9. public void beforePrintLog(){
  10. System.out.println("前置通知Logger类中的beforePrintLog执行日志记录。。。");
  11. }
  12. /**
  13. * 后置通知
  14. */
  15. public void afterReturningPrintLog(){
  16. System.out.println("后置通知Logger类中的afterReturningPrintLog执行日志记录。。。");
  17. }
  18. /**
  19. * 异常通知
  20. */
  21. public void afterThrowingPrintLog(){
  22. System.out.println("异常通知Logger类中的afterThrowingPrintLog执行日志记录。。。");
  23. }
  24. /**
  25. * 最终通知
  26. */
  27. public void afterPrintLog(){
  28. System.out.println("最终通知Logger类中的afterPrintLog执行日志记录。。。");
  29. }
  30. /**
  31. * 环绕通知
  32. * 当配置了环绕通知,切入点方法没有执行,而只通知方法执行了
  33. * 分析:
  34. * 通过对比动态代理中的环绕通知,发现动态代理的环绕通知有明确的切入点方法调用,而现在写的方法没有
  35. * 解决:
  36. * spring框架提供了一个接口:ProceedingJoinPoint 接口,该接口有一个procced()方法,改方法明确了切入点方法调用
  37. * 该接口可作为切入点方法的参数,在实际执行中spring框架会通过该接口的实现类供我们使用
  38. * spring框架中的环绕通知:
  39. * 它是spring框架提供的一种可以在代码中手动控制增强方法何时执行的方式
  40. */
  41. public Object aroundPrintLog(ProceedingJoinPoint pjp){
  42. Object rtValue = null;
  43. try {
  44. Object[] args = pjp.getArgs();//获取要执行方法的参数
  45. System.out.println("Logger类中的aroundPrintLog执行日志记录。。。前置");
  46. rtValue = pjp.proceed(args);//执行切入点方法
  47. System.out.println("Logger类中的aroundPrintLog执行日志记录。。。后置");
  48. return rtValue;
  49. }catch (Throwable t){
  50. System.out.println("Logger类中的aroundPrintLog执行日志记录。。。异常");
  51. throw new RuntimeException(t);
  52. }finally {
  53. System.out.println("Logger类中的aroundPrintLog执行日志记录。。。最终");
  54. }
  55. }
  56. }

配置文件

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:aop="http://www.springframework.org/schema/aop"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans
  6. http://www.springframework.org/schema/beans/spring-beans.xsd
  7. http://www.springframework.org/schema/aop
  8. http://www.springframework.org/schema/aop/spring-aop.xsd">
  9. <!--配置spring的IOC把service对象配置-->
  10. <bean id="accountService" class="wf.service.impl.AccountServiceImpl"></bean>
  11. <bean id="logger" class="wf.utils.Logger"></bean>
  12. <!--配置aop-->
  13. <aop:config>
  14. <!--配置切入点表达式,id属性指定表达式的唯一标识。expression属性用于指定表达式内容
  15. 该标签写在aop:aspect标签内部时只能用在当前切面使用
  16. 它还可以写在aop:aspect标签的外部,就变成了所有切面都可以用
  17. 注意:改标签写在aop:aspect标签内部时按照约束只能写在最前面
  18. -->
  19. <aop:pointcut id="pt" expression="execution(* wf.service.impl.*.*(..))"></aop:pointcut>
  20. <!--配置切面-->
  21. <aop:aspect id="logAdvice" ref="logger">
  22. <!--前置通知:在切入点方法前执行
  23. <aop:before method="beforePrintLog" pointcut-ref="pt"></aop:before>-->
  24. <!--后置通知:在切入点方法正常执行后执行。它和异常通知只能执行一个
  25. <aop:after-returning method="afterReturningPrintLog" pointcut-ref="pt"></aop:after-returning>-->
  26. <!--异常通知:在切入点方法方式异常后执行
  27. <aop:after-throwing method="afterThrowingPrintLog" pointcut-ref="pt"></aop:after-throwing>-->
  28. <!--最终通知:无论切入点方法是否正常执行,它都会在最后执行
  29. <aop:after method="afterPrintLog" pointcut-ref="pt"></aop:after>-->
  30. <!--配置环绕通知 详解在Logger类中-->
  31. <aop:around method="aroundPrintLog" pointcut-ref="pt"></aop:around>
  32. </aop:aspect>
  33. </aop:config>
  34. </bean

3.3、基于注解的配置

被代理类

  1. package wf.service.impl;
  2. import org.springframework.stereotype.Service;
  3. import wf.service.IAccountService;
  4. /**
  5. * 账户的服务层实现类
  6. */
  7. @Service("accountService")
  8. public class AccountServiceImpl implements IAccountService {
  9. public void saveAccount() {
  10. System.out.println("执行了保存");
  11. // int i = 1/0;
  12. }
  13. public void updateAccount(int i) {
  14. System.out.println("执行了更新" + i);
  15. }
  16. public int deleteAccount() {
  17. System.out.println("执行了删除");
  18. return 0;
  19. }
  20. }

切面类

  1. package wf.utils;
  2. import org.aspectj.lang.ProceedingJoinPoint;
  3. import org.aspectj.lang.annotation.*;
  4. import org.springframework.context.annotation.ComponentScan;
  5. import org.springframework.context.annotation.EnableAspectJAutoProxy;
  6. import org.springframework.stereotype.Component;
  7. /**
  8. * 用于记录日志的工具类
  9. */
  10. @ComponentScan("wf")
  11. @EnableAspectJAutoProxy
  12. @Component("logger")
  13. @Aspect//表示当前类是一个切面类
  14. public class Logger {
  15. @Pointcut("execution(* wf.service.impl.*.*(..))")
  16. public void pt(){}
  17. /**
  18. * 前置通知
  19. */
  20. @Before("pt()")
  21. public void beforePrintLog(){
  22. System.out.println("前置通知Logger类中的beforePrintLog执行日志记录。。。");
  23. }
  24. /**
  25. * 后置通知
  26. */
  27. @AfterReturning("pt()")
  28. public void afterReturningPrintLog(){
  29. System.out.println("后置通知Logger类中的afterReturningPrintLog执行日志记录。。。");
  30. }
  31. /**
  32. * 异常通知
  33. */
  34. @AfterThrowing("pt()")
  35. public void afterThrowingPrintLog(){
  36. System.out.println("异常通知Logger类中的afterThrowingPrintLog执行日志记录。。。");
  37. }
  38. /**
  39. * 最终通知
  40. */
  41. @After("pt()")
  42. public void afterPrintLog(){
  43. System.out.println("最终通知Logger类中的afterPrintLog执行日志记录。。。");
  44. }
  45. /**
  46. * 环绕通知
  47. * 当配置了环绕通知,切入点方法没有执行,而只通知方法执行了
  48. * 分析:
  49. * 通过对比动态代理中的环绕通知,发现动态代理的环绕通知有明确的切入点方法调用,而现在写的方法没有
  50. * 解决:
  51. * spring框架提供了一个接口:ProceedingJoinPoint 接口,该接口有一个procced()方法,改方法明确了切入点方法调用
  52. * 该接口可作为切入点方法的参数,在实际执行中spring框架会通过该接口的实现类供我们使用
  53. * spring框架中的环绕通知:
  54. * 它是spring框架提供的一种可以在代码中手动控制增强方法何时执行的方式
  55. */
  56. @Around("pt()")
  57. public Object aroundPrintLog(ProceedingJoinPoint pjp){
  58. Object rtValue = null;
  59. try {
  60. Object[] args = pjp.getArgs();//获取要执行方法的参数
  61. System.out.println("Logger类中的aroundPrintLog执行日志记录。。。前置");
  62. rtValue = pjp.proceed(args);//执行切入点方法
  63. System.out.println("Logger类中的aroundPrintLog执行日志记录。。。后置");
  64. return rtValue;
  65. }catch (Throwable t){
  66. System.out.println("Logger类中的aroundPrintLog执行日志记录。。。异常");
  67. throw new RuntimeException(t);
  68. }finally {
  69. System.out.println("Logger类中的aroundPrintLog执行日志记录。。。最终");
  70. }
  71. }
  72. }

测试类

  1. package test;
  2. import org.springframework.context.ApplicationContext;
  3. import org.springframework.context.annotation.AnnotationConfigApplicationContext;
  4. import org.springframework.context.support.ClassPathXmlApplicationContext;
  5. import wf.service.IAccountService;
  6. import wf.utils.Logger;
  7. public class AopTest {
  8. public static void main(String[] args) {
  9. //1.获取容器
  10. // ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");
  11. ApplicationContext ac = new AnnotationConfigApplicationContext(Logger.class);
  12. //2.获取容器对象
  13. IAccountService as = ac.getBean("accountService", IAccountService.class);
  14. //3.执行方法
  15. as.saveAccount();
  16. // as.updateAccount(3);
  17. // as.deleteAccount();
  18. }
  19. }

SSM框架之Spring(4)AOP的更多相关文章

  1. 【SSM框架】Spring + Springmvc + Mybatis 基本框架搭建集成教程

    本文将讲解SSM框架的基本搭建集成,并有一个简单demo案例 说明:1.本文暂未使用maven集成,jar包需要手动导入. 2.本文为基础教程,大神切勿见笑. 3.如果对您学习有帮助,欢迎各种转载,注 ...

  2. java web后台开发SSM框架(Spring+SpringMVC+MyBaitis)搭建与优化

    一.ssm框架搭建 1.1创建项目 新建项目后规划好各层的包. 1.2导入包 搭建SSM框架所需包百度云链接:http://pan.baidu.com/s/1cvKjL0 1.3整合spring与my ...

  3. SSM框架-----------SpringMVC+Spring+Mybatis框架整合详细教程

    1.基本概念 1.1.Spring Spring是一个开源框架,Spring是于2003 年兴起的一个轻量级的Java 开发框架,由Rod Johnson 在其著作Expert One-On-One  ...

  4. 2018用IDEA搭建SSM框架(Spring+SpringMVC+Mybatis)

    使用IDEA搭建ssm框架 环境 工具:IDEA 2018.1 jdk版本:jdk1.8.0_171 Maven版本:apache-maven-3.5.3 Tomcat版本:apache-tomcat ...

  5. 浅谈IDEA集成SSM框架(SpringMVC+Spring+MyBatis)

    前言 学习完MyBatis,Spring,SpringMVC之后,我们需要做的就是将这三者联系起来,Spring实现业务对象管理,Spring MVC负责请求的转发和视图管理, MyBatis作为数据 ...

  6. SSM框架之spring(1)

    spring(1) 1.spring概述 Spring是分层的 Java SE/EE应用 full-stack 轻量级开源框架,以 IoC(Inverse Of Control:反转控制)和 AOP( ...

  7. 一步步教你整合SSM框架(Spring MVC+Spring+MyBatis)详细教程重要

    前言 SSM(Spring+SpringMVC+Mybatis)是目前较为主流的企业级架构方案,不知道大家有没有留意,在我们看招聘信息的时候,经常会看到这一点,需要具备SSH框架的技能:而且在大部分教 ...

  8. ssm框架(Spring Springmvc Mybatis框架)整合及案例增删改查

    三大框架介绍 ssm框架是由Spring springmvc和Mybatis共同组成的框架.Spring和Springmvc都是spring公司开发的,因此他们之间不需要整合.也可以说是无缝整合.my ...

  9. SSM框架整合(Spring+SpringMVC+Mybatis)

    第一步:创建maven项目并完善项目结构  第二步:相关配置 pom.xml 引入相关jar包 1 <properties> 2 <project.build.sourceEncod ...

  10. Maven+SSM框架(Spring+SpringMVC+MyBatis)(二)

    1.基本概念 2.开发环境搭建 3.Maven Web项目创建 4.SSM整合 此次整合我分两个配置文件: 1)分别是spring-mybatis.xml,包含spring和mybatis的配置文件, ...

随机推荐

  1. Blazor(WebAssembly) + .NETCore 实现斗地主

    之前群里大神发了一个 html5+ .NETCore的斗地主,刚好在看Blazor WebAssembly 就尝试重写试试. 还有就是有些标题党了,因为文章里几乎没有斗地主的相关实现:),这里主要介绍 ...

  2. webpack 插件 ProvidePlugin 的使用方法和 eslint 配置

    ProvidePlugin:自动加载模块,而不必到处 import 或 require .(点击查看官方文档) 使用方法: 配置 webpack.config.js文件里 plugins 属性 new ...

  3. 计划任务cron

    cron 计划任务 作用: 计划任务主要是做一些周期性的任务,目前最主要的用途是定期备份数据 Schedule one-time tasks with at. 一次性调度执行 atSchedule r ...

  4. Linux - CentOS 7 通过Yum源安装 MySql 5.7

    添加MySQL Yum存储库 从官网下载最新的mysql源 官网地址:https://dev.mysql.com/downloads/repo/yum/ 选择并下载适用于平台的发行包. 然后,在Lin ...

  5. Android进程管理机制研究

    一.Linux中的进程管理在Linux中,进程是指处理器上执行的一个实例,可使用任意资源以便完成它的任务,具体的进程管理,是通过“进程描述符”来完成的,对应Linux内核中的task_struct数据 ...

  6. 用 Keras 实现单词级的 one-hot 编码 & 使用散列技巧的单词级的 one-hot 编码

    from keras.preprocessing.text import Tokenizer samples = ['The cat sat on the mat.', 'The dog ate my ...

  7. 魔兽争霸RPG地图开发速成教程

    魔兽争霸RPG地图开发速成教程 1 打开WE编辑器 下载地址  http://rpg.dz.blizzard.cn/authors-home/editor-download 然后新建地图 2  打开工 ...

  8. 一起学SpringMVC之RequestMapping详解

    本文以一个简单的小例子,简述SpringMVC开发中RequestMapping的相关应用,仅供学习分享使用,如有不足之处,还请指正. 什么是RequestMapping? RequestMappin ...

  9. 易优CMS:channelartlist 获取当前频道的下级栏目的内容列表

    channelartlist 获取当前频道的下级栏目的内容列表   [基础用法] 名称:channelartlist 功能:获取当前频道的下级栏目的内容列表标签 语法: {eyou:channelar ...

  10. MySQL 重置Mysql root用户账号密码

    重置Mysql root用户账号密码 By:授客 QQ:1033553122   问题描述: 使用mysqladmin.exe执行命令时出现以下错误提示: mysqladmin: connect to ...