我的jar包都是引用的,各种RuntimeException,404,500 错误,把jar包手动添加到lib下面可以正常加载。
2017-04-01
最新回答 / 知了海龙
是不是版本的问题??
最赞回答 / 仁夏
你的项目少导入了aspectjweaver.jar包,导入就可以了
最新回答 / 李东浩
<...code...>
最新回答 / 抬头就是阳光c
哦,懂了,application中配置这么一段 <bean id="productAction" class="cn.lzy.ssh.action.ProductAction" scope="prototype">,刚才没看到
2017-03-28
<struts>
<package name="ssh" extends="struts-default" namespace="/">
<!-- 这里name和jsp中的action相对应 ,用struts配置-->
<action name="product_*" class="productAction" method="{1}">
</action>
</package>
</struts>
<package name="ssh" extends="struts-default" namespace="/">
<!-- 这里name和jsp中的action相对应 ,用struts配置-->
<action name="product_*" class="productAction" method="{1}">
</action>
</package>
</struts>
2017-03-28
最新回答 / Blegend
同学,这个方法的参数是String[] mappingResources 是个数组呦
已采纳回答 / MihaiWong
这个应该是bean的id名字的问题,注意字母大小写<!--配置action层 --> <bean id="productaction" class="com.action.ProductAction" scope="prototype"> <property name="productservice" ref="productservice"></property> </bean> <!--配置service层 --> <...
ERROR [localhost-startStop-1] - Context initialization failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'productService' defined in class path resource [applicationContext.xml]: Initialization of bean failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'productService' defined in class path resource [applicationContext.xml]: Initialization of bean failed
2017-03-26
最新回答 / 初学者LV3
兄弟你这是jar包 导错了
最新回答 / Blegend
虽然你说的不是很清楚,但是我能猜到,应该是你的配置文件有点问题,导致你服务器没有起来,服务器没起来的话所有对你服务器的请求都会报404的错误,不知道是不是这个问题,如果不是回复我,帮你解答
2017-03-24