spring 3.1 集成 beetl 2.2 报错!
spring 3.1 集成 beetl 2.2
启动报错:NoUniqueBeanDefinitionException
java.lang.NoClassDefFoundError: org/springframework/beans/factory/NoUniqueBeanDefinitionException
配置如下:
spring -beetl.xml
<!-- 第一个GroupTemplate,模板放在Webapp下 -->
<bean name="beetlConfig" class="org.beetl.ext.spring.BeetlGroupUtilConfiguration" init-method="init">
<property name="configFileResource" value="classpath:properties/beetl.properties" />
</bean>
<!-- Beetl视图解析器 -->
<bean name="beetlViewResolver" class="org.beetl.ext.spring.BeetlSpringViewResolver">
<!-- 多视图解析器,需要设置viewNames和order -->
<property name="viewNames">
<list>
<value>*</value>
</list>
</property>
<property name="prefix" value="/WEB-INF/beetl/"/>
<property name="suffix" value=".html" />
<property name="contentType" value="text/html;charset=UTF-8" />
<property name="order" value="0" />
<!-- 多GroupTemplate,需要指定使用的bean -->
<property name="config" ref="beetlConfig" />
</bean>
applicationContext.xml
<!-- beetl 配置文件 -->
<import resource="classpath*:spring/framework/beetl/spring-beetl.xml"/>
详细错误信息:
java.lang.NoClassDefFoundError: org/springframework/beans/factory/NoUniqueBeanDefinitionException
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Class.java:2570)
at java.lang.Class.getDeclaredMethods(Class.java:1855)
错误截图:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
遇到同样的问题,请问楼主以前怎么解决的
写着最低支持3.2.14
贴出了~
回复
你这不完整啊
回复
完整的不是应该有个caused by么。。。
贴完整报错
有人吗?@闲大赋