vona-core 5.0.29 → 5.0.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -340,7 +340,7 @@ export class BeanContainer {
|
|
|
340
340
|
let chains = [];
|
|
341
341
|
// aop
|
|
342
342
|
if (!proxyDisable && beanOptions && cast(beanOptions.scene) !== 'aop') {
|
|
343
|
-
const beanAop = this.app.bean._getBean('a-
|
|
343
|
+
const beanAop = this.app.bean._getBean('a-aspectutils.service.aop');
|
|
344
344
|
const aops = beanAop.findAopsMatched(beanOptions.beanFullName);
|
|
345
345
|
if (aops) {
|
|
346
346
|
chains = chains.concat(aops);
|
|
@@ -348,7 +348,7 @@ export class BeanContainer {
|
|
|
348
348
|
}
|
|
349
349
|
// aop method
|
|
350
350
|
if (!proxyDisable && beanOptions) {
|
|
351
|
-
const beanAop = this.app.bean._getBean('a-
|
|
351
|
+
const beanAop = this.app.bean._getBean('a-aspectutils.service.aop');
|
|
352
352
|
if (beanAop.hasAopMethods(beanOptions?.beanFullName)) {
|
|
353
353
|
chains.push(SymbolProxyAopMethod);
|
|
354
354
|
}
|
|
@@ -451,7 +451,7 @@ export class BeanContainer {
|
|
|
451
451
|
return result;
|
|
452
452
|
}
|
|
453
453
|
_getAopChainsProp_aopMethods(chains, aopKey, beanFullName, methodType, prop) {
|
|
454
|
-
const beanAop = this.app.bean._getBean('a-
|
|
454
|
+
const beanAop = this.app.bean._getBean('a-aspectutils.service.aop');
|
|
455
455
|
const aopMethods = beanAop.findAopMethodsMatched(beanFullName, prop);
|
|
456
456
|
for (const aopMethod of aopMethods) {
|
|
457
457
|
let fn;
|