web 错误积累

1
java.lang.IllegalArgumentException: Resources cannot be null.
主要原因应该是没有定义actionform。



nested exception is org.xml.sax.SAXParseException: Premature end of file.

配置文件不能为空,标签提前结束
spring配置文件中标签错误,配置文件里必须要写<beans></beans>标签否则或报上面的错

配置文件报错
java.lang.RuntimeException: Error parsing XPath '/sqlMapConfig/sqlMap'.  Cause: com.ibatis.common.xml.NodeletException: Error parsing XML.  Cause: java.lang.NullPointerException

Unable to initialize Struts ActionServlet due to an unexpected exception or error thrown, so marking the servlet as unavailable.  Most likely, this is due to an incorrect or missing library dependency.
java.lang.NullPointerException






Cannot find bean under name org.apache.struts.taglib.html.BEAN[转]
1。试图在Struts的form标记外使用form的子元素。在后面使用Struts的html标记等
2。不经意使用的无主体的标记,如web 服务器解析时当作一个无主体的标记,随后使用的标记都被认为是在这个标记之外的
3。还有就是在使用taglib引入HTML标记库时,你使用的prefix的值不是html

4。property必须和所要提交的action对应的formbean中的某个属性相匹配(必须有一个formbean)
5。要使用标签,外层必须使用标签,不能使用html的

你可能感兴趣的:(java,Web,bean,struts,ibatis)