Spring AOP未执行@Around

时间:2019-01-23 17:38:18

标签: java spring aop spring-aop

我有一个方法定义,如:

s=pd.pivot_table(df,index='c',columns='f',values=['V','E']).stack(level=0).sort_index(level=1)
s.index=s.index.map('{0[1]}({0[0]})'.format)
s
Out[95]: 
f        3     5     7     9
E(M)   NaN  22.0  40.0   NaN
E(R)  24.0   NaN  36.0  38.0
V(M)   NaN  32.0  45.0   NaN
V(R)  28.0   NaN  42.0  41.0

我正在尝试为此方法创建@Around建议:

public String testing (String requestPayload, String certificatePath, String certPassword, String urlToHit, String method, String soapAction, int timeOut) throws KeyStoreException, FileNotFoundException, NoSuchAlgorithmException, CertificateException, UnrecoverableKeyException, KeyManagementException 

我尝试给出“ **”而不是所有异常名称,试图给出public void而不是“ *”,但是似乎没有任何作用。

我在这里想念什么?

0 个答案:

没有答案