Error:Cannot find bean: "org.apache.struts.taglib.html.BEAN" in any scope

原因:html标签和struts标签混用,或者表单元素外面没有<html:form>标签包裹。

解决:统一标签

<html:form action="/login.do">
  <bean:message key="info.input.account"/>
  <html:text property="account"></html:text><br>
  <bean:message key="info.input.password"/>
  <html:text property="password"></html:text></html:form>

原文地址:https://www.cnblogs.com/wincent98/p/10016454.html

时间: 2024-10-21 02:58:22

Error:Cannot find bean: "org.apache.struts.taglib.html.BEAN" in any scope的相关文章

java org.apache.struts.taglib.html.BEAN 没有找到

index.jsp Html代码   <body> <a href="login2.do">登陆(struts标签)</a><br> </body> struts-config.xml Xml代码   <action path="/login2" forward="/login_use_struts_tag.jsp" ></action> <action p

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的 posted on 20

[转]Eclipse下开发Struts奇怪异常:org.apache.struts.taglib.bean.CookieTei

今天早上开始在Eclipse下学习struts,于是按照李兴华老师的<struts入门视频教程>一步一步地充满快乐的学习,等把登陆程序写完,打开浏览器准备运行的时候,奇怪的异常产生了,异常显示500错误,如下: HTTP Status 500 - -------------------------------------------------------------------------------- type Exception report message description Th

org.apache.struts.taglib.bean.CookieTei cannot be cast to javax.servlet.jsp.tagext.TagExtraInfo

严重: Servlet.service() for servlet jsp threw exceptionjava.lang.ClassCastException: org.apache.struts.taglib.bean.CookieTei cannot be cast to javax.servlet.jsp.tagext.TagExtraInfo at org.apache.jasper.compiler.TagLibraryInfoImpl.createTagInfo(TagLibra

org.apache.struts.chain.commands.InvalidPathException: No action config found for the specified url.

No action config found for the specified url url路径下找不到action,原因是stuts-config.xml文件配置错误. demo的项目文件如下: 使用jsp文件夹中的login.jsp文件调用action: <%@ page language="java" contentType="text/html" pageEncoding="GBK"%> <!DOCTYPE html

Apache Struts 2的命名空间实战

Apache Struts 2的命名空间实战 作者:chszs,版权所有,未经同意,不得转载.博主主页:http://blog.csdn.net/chszs Apache Struts 2的命名空间是一个新概念,它通过为每一个模块分配一个命名空间从而实现多模块的处理.另外,它解决了不同模块下的相同Acion名的名字冲突的问题. 从下面的图我们可以理解URL是怎样匹配Struts 2命名空间的. 一.命名空间的配置 下面我们通过Struts2的命名空间配置实例来说明它是怎样匹配URL和目录的.要说

Struts 1 之&lt;bean&gt;标签库

<bean:write>标签 <bean:write>能输出request.session.application.page四个域中能访问到的变量,与EL表达式不同的是,如果变量不存在或者访问不到,会抛出异常 <bean:write>常用的属性有如下几个: 1.name,用来指定属性的名字 2.filter,用来指定是否屏蔽到属性值的HTML格式 3.property,用来指定name所代表的对象的属性名字 4.format,用来指定显示的时间,数字,日期等的格式 例1

Apache Struts最新漏洞 远程代码执行漏洞预警 2018年11月08日

2018年11月8日,SINE安全监控检测中心,检测到Apache Struts官方更新了一个Struts漏洞补丁,这个漏洞是Apache Struts目前最新的漏洞,影响范围较广,低于Apache Struts 2.3.35的版本都会受到此次Struts漏洞的攻击,目前apache官方更新的漏洞补丁,主要是修复commonsfileupload上传库出现的安全问题,这个库可以远程执行代码,上传木马后门到网站服务器中去. Apache Struts 漏洞描述 某知名的安全组织向Apache St

Error querying database. Cause: org.apache.ibatis.reflection.ReflectionException: There is no getter for property named &#39;ItemsCustom&#39; in &#39;class com.pojo.OrderDetailCustom

再用 junit 测试MyBatis时发现的错误: org.apache.ibatis.exceptions.PersistenceException: ### Error querying database.  Cause: org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ItemsCustom' in 'class com.pojo.OrderDetailCust