码迷,mamicode.com
首页 >  
搜索关键字:OWIN    ( 793个结果
判断ABAP代码是否处于update模式下运行的工具类
The class cl_system_transaction_state contains several useful utility methods: get_in_update_task: return the flag whether current code is running wit ...
分类:其他好文   时间:2020-08-06 15:37:21    阅读次数:82
abp框架Excel导出——基于vue
#abp框架Excel导出——基于vue #1.技术栈 ##1.1 前端采用vue,官方提供 UI套件用的是iview ##1.2 后台是abp——aspnetboilerplate 即abp v1,https://github.com/aspnetboilerplate/aspnetboilerp ...
分类:其他好文   时间:2020-07-29 21:18:12    阅读次数:78
基于SpringBoot2.3.1进行AOP原理源码阅读
首先应该都知道什么是AOP: 面向切面编程,通过预编译方式和运行期间动态代理实现程序功能的统一维护的一种技术 那么我们通常如何使用AOP? 1、我们普通的业务逻辑类 2、切面类,里面创建目标方法,通过自定义表达式去确定我们去监听那些业务逻辑类的普通方法运行,然后加上我们自己的逻辑 3、通知注解,告知 ...
分类:编程语言   时间:2020-07-26 01:53:19    阅读次数:77
119. 杨辉三角 II(滚动数组优化的二维dp)
class Solution { public List<Integer> getRow(int rowIndex) { Integer[] res = new Integer[rowIndex+1]; Arrays.fill(res,1); for(int i = 1; i <= rowIndex ...
分类:编程语言   时间:2020-07-19 17:46:05    阅读次数:79
WSL安装starship
Installing via curl error - starship: Cannot open: Permission denied · Issue #838 · starship/starship https://github.com/starship/starship/issues/838 ...
分类:其他好文   时间:2020-07-11 00:03:50    阅读次数:66
spring-aop
1.概述 spring-aop是一个面向切面的中间件,是对oop的完善和补充。 2.基本概念 (1)Aspect(切面):通常是一个类,里面可以定义切入点和通知 (2)JointPoint(连接点):程序执行过程中明确的点,一般是方法的调用 (3)Advice(通知):AOP在特定的切入点上执行的增 ...
分类:编程语言   时间:2020-07-10 09:53:04    阅读次数:64
Maven项目常见问题:解决相互依赖
问题如下: INFO] Scanning for projects... [ERROR] The projects in the reactor contain a cyclic reference: Edge between 'Ve rtex{label='org.kuuyee.sample:mo ...
分类:其他好文   时间:2020-07-08 10:28:09    阅读次数:170
36. Valid Sudoku
package LeetCode_36 /** * 36. Valid Sudoku * https://leetcode.com/problems/valid-sudoku/description/ * * Determine if a 9x9 Sudoku board is valid. Onl ...
分类:其他好文   时间:2020-07-06 09:18:05    阅读次数:57
局部内部类
局部内部类 示例代码 //外部类 public class Outer { private String name = "qiudajiang"; private int age = 10; //外部类方法 public void showOuter(){ //局部变量 String address ...
分类:其他好文   时间:2020-07-04 11:54:49    阅读次数:66
PTA 自测-5 Shuffling Machine
PTA 自测-5 Shuffling Machine 题目描述 Shuffling is a procedure used to randomize a deck of playing cards. Because standard shuffling techniques are seen as ...
分类:系统相关   时间:2020-07-03 17:48:11    阅读次数:67
793条   上一页 1 2 3 4 5 6 ... 80 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!