- 浏览: 122600 次
- 性别:
- 来自: 苏州
最新评论
-
qiuyu19860826:
记得重新保存时起个设置文件名称
MyEclipse中防止代码格式化时出现换行 -
buger:
可能是你的数据源配置时,相关文件没有放到相应的位置即: mys ...
[JBossManagedConnectionPool] Throwable while attempting to get a new connection:
文章列表
<html:text property="platformPaymentProviderTO.paymentDesc"></html:text>
<html:select property="platformPaymentTO.paymentProviderId">
<html:options collection="paymentServicesList" property="paymentId"
labelProperty= ...
<a href='editPayment.do?paymentId="5"/>
String svcPaymentId = ((StrutsCommandContext)input).getRequest().getParameter("paymentId");
或者
strust配置文件里配置paymentId,然后input.get("paymentId");
下两是用stuct1标签库和直接html写的从后台读出下拉框的值
<html:select property="platformPaymentTO.paymentProviderId" onchange="initCreatPayment();"><html:options collection="paymentServicesList" property="paymentIdlabelProperty="paymentDesc" />
</html:select>
...
一、添加节点
$(selector).append()
向selector选择的元素的里面插入参数参数所指定的dom元素,插入的位置在最后面。参数可以是直接的HTML字符串,也可以是由$()函数创建的DOM元素
如:$(selector).append(“<b>你好</b>”);
或 $dom=$(“<b>你好</b>”); $(selector).append($dom);
$(HTML).appendTo(selector)
向selector选择的元素里面插入$(HTML) ...
汗!今天做练习的时候发现自己连主键、外键的区别都忘了,哎
主键:这张表的唯一标识符
外键:是另外一个张表的主键,是引入过来的
关于I.Frame的用法
<codeLookup:collection id="pay_svc_list" codeType="pay_svc" activeOnly="true" noCache="true" />
<html:select property="platformPaymentTO.paymentId">
<html:options collection="pa ...
javax.servlet.ServletException: org.apache.jasper.JasperException: /jsp/platformpayment/createPayment.jsp(118,36) Unterminated <bean:message tag
错误原因:<bean:message key="label.name""/>
多了个双引号引起的
Exception when executing command: org.springframework.jdbc.UncategorizedSQLException: Failed performing 'map-sql' operation (id=/platformPayment/getPaymentInputinput={}); uncategorized SQLException for SQL [ select p.* from tbl_pc_svc_provider_detail p left join tbl_pc_svc_provider pc ...
內连接仅选出两张表中互相匹配的记录.因此,这会导致有时我们需要的记录没有包含进来。
为更好的理解这个概念,我们介绍两个表作演示。苏格兰议会中的政党表(party)和议员表(msp)。
party(Code,Name,Leader)
Code: 政党 ...
问题:18:45:28,477 ERROR [[jsp]] Servlet.service() for servlet jsp threw exception
javax.servlet.jsp.JspException: You must specify the value attribute or nested tag content
at org.apache.struts.taglib.html.MultiboxTag.prepareValue(MultiboxTag.java:195)
at org.apache.struts.taglib.html.M ...
attribute:
这个属性用来指定ActionForm保存到指定上下文时所使用的属性名。如果不指定attribute属性的值,将使用name属性的值作为保存时的属性名。也就是说,attribute属性的默认值就是name属性的值。====================================================================
className:
指定自定义的配置对象。这个配置对象必须是ActionMapping的子类。如果不对这个属性进行指定,那么将使用默认值org.apache.struts.action.ActionMapping。通过 ...
问题:java.lang.IllegalArgumentException: Path .platformPayment.createPayment does not start with a "/" character
解决:我配置的新的stucts-new.xml在stucts-default.xml中也要添加
问题:页面上多了<html:multibox property="deleteSelections">,报如下错误:
javax.servlet.ServletException: org.apache.jasper.JasperException: javax.servlet.ServletException: javax.servlet.jsp.JspException: Cannot find bean under name org.apache.struts.taglib.html.BEAN
解答:在structs里要配置property的form-bea ...
问题:[JBossManagedConnectionPool] Throwable while attempting to get a new connection: null
解答:\jboss-4.2.2\server\default\lib中缺少mysql-connector-java-3.1.12-bin.jar驱动
问题:编译好的maven项目为什么在jboss下跑不了,出现404错误
解答:检查web.xml中
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
我是因为这里没有index.jsp,呵呵,菜鸟问题,前进