Spring
qq513283439
求技术同好,相互学习...
展开
-
Spring基础系列-AOP源码分析
转发:https://www.cnblogs.com/V1haoge/p/9560803.html原创作品,可以转载,但是请标注出处地址:https://www.cnblogs.com/V1haoge/p/9560803.html一、概述 Spring的两大特性:IOC和AOP。 AOP是面向切面编程,Spring内置了自己实现的基于动态代理技术的AOP,同时还支持成熟的As...原创 2020-03-24 09:25:23 · 265 阅读 · 0 评论 -
Spring面向切面编程AOP
AOP就是对目标方法运行之前、运行中、运行之后、运行之后返回、运行中异常的切入。在切入中运行出现的任何异常,并不影响目标方法的运行。1、定义一个接口【IServiceName.java】package com.zuk.hl.test.springAOP.annotation;/** * Title: className * Description: classDescr原创 2017-05-25 17:49:09 · 263 阅读 · 0 评论 -
Spring面向切面编程AOP(around)
package com.ldygo.order.mapper.proxy;import org.aspectj.lang.ProceedingJoinPoint;import org.aspectj.lang.annotation.Around;import org.aspectj.lang.annotation.Aspect;import org.springframework.bea原创 2017-05-26 16:28:44 · 4674 阅读 · 0 评论 -
spring的多例和单例模式
调用规则为,单例调用多例--多例又调用单例;1、创建一个单例:/** */package com.ec.hongjia.agri.resource.service.impl;import org.springframework.beans.BeansException;import org.springframework.beans.factory.BeanFactory;imp...原创 2018-03-08 15:46:32 · 1744 阅读 · 0 评论 -
Spring controller 上传下载
下载: @RequestMapping(value = "/file/download") public void getFileStream(HttpServletRequest request, HttpServletResponse response, String url) { String username = (String) request.getAtt...原创 2018-06-22 15:38:34 · 408 阅读 · 0 评论 -
jarslink
http://www.sofastack.tech/sofa-boot/docs/Home 简介 Jarslink 2.0 是 SOFABoot 官方基于 SOFAArk 开发的功能插件,负责管理多应用在 SOFAArk 容器之上的合并部署,具备如下特性: 支持运行时动态安装和卸载应用。 支持运行时应用热替换能力,保证服务的连续性。 跨应用内部通信,支...转载 2018-09-05 21:20:24 · 1397 阅读 · 0 评论