帮你看看出错信息:
> autowiring. This interceptor will not be available.
autowiring是Ioc模式的自动配对,你在代码中有一个类调用另外一个类,但是它发现这两个类并不配对,
再看下面原因
>Cause: Could not load class >com.opensymphony.xwork.spring.interceptor.ActionAutowiringInterc>eptor. Perhaps it exists but
>certain dependencies are not available?
ActionAutowiringInterceptor是存在,但是某个依赖不合适,就是上面说的原因。
>2005-12-5 17:13:32 >com.opensymphony.xwork.config.providers.InterceptorBuilder >constructInterceptorReference
>严重: Unable to find interceptor class referenced by ref-name >completeStack
在构建解释器链时,没有发现你取名为completeStack这个名称指向的解释器,可能你没打包进去,或者你的解释器编写不符合规范