网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
单选题
在JSP页面中使用〈jsp:setProperty name="bean的名字" property ="*"/〉格式,将表单参数为Bean属性赋值,property="*"格式要求Bean的属性名字()。
A
必须和表单参数类型一致
B
必须和表单参数名称一一对应
C
必须和表单参数数量一致
D
名称不一定对应
参考答案
参考解析
解析:
暂无解析
更多 “单选题在JSP页面中使用〈jsp:setProperty name="bean的名字" property ="*"/〉格式,将表单参数为Bean属性赋值,property="*"格式要求Bean的属性名字()。A 必须和表单参数类型一致B 必须和表单参数名称一一对应C 必须和表单参数数量一致D 名称不一定对应” 相关考题
考题
下列选项中,能够正确使用JavaBean的是______。A.<jsp:useBean name="beanTest"class="ClassBean"/>
B.<jsp:useBean id="beanTest"class="ClassBean"/>
C.<jsp:useBean bean="beanTest"class="ClassBean"/>
D.<jsp:useBean beanName="beanTest"class="ClassBean"/>
考题
下面关于jsp:setProperty说法中正确的是()A、jsp:setProperty用来设置已经实例化的Bean对象的属性B、name属性:表示要设置属性的是哪个BeanC、property属性表示要设置哪个属性D、value属性用来指定Bean属性的值,且该属性必须存在E、Param指定用哪个请求参数作为Bean属性的值
考题
在J2EE中,对于标记,描述正确的是()。 A、jsp:param是jsp:include、jsp:forward标记的子标记 B、如果aa.jsp有代码:jsp:forward page="next.jsp"jsp:param name="name" value="jb-aptech" //jsp:forward,则在next.jsp中可以使用request.getParameter("name");把属性name的值取出来 C、如果aa.jsp有代码:jsp:forward page="next.jsp"jsp:param name="name" value="jb-aptech" //jsp:forward,则在next.jsp中可以使用request.getAttribute("name");把属性name的值取出来 D、如果jsp:param标记不放在jsp:forward标记内,也就是不作为jsp:forward标记的子标记,则使用浏览器查看时会显示错误页面
考题
在JSP中,对〈jsp:setProperty〉标记描述正确的是()。A、〈jsp:setProperty〉和〈jsp:getProPerty〉必须在一个JSP文件中搭配出现B、就如同session.setAttribute()一样,来设计属性/值对C、和〈jsp:useBean〉动作一起便用,来设置bean的属性值D、就如同request.setAttribute()一样,来设置属性/值对
考题
在JSP中调用JavaBean时不会用到的标记是()。A、〈javabean〉B、〈jsp:useBean〉C、〈jsp:setProperty〉D、〈jsp:getProperty〉
考题
在JSP页面中使用〈jsp:setProperty name="bean的名字" property ="*"/〉格式,将表单参数为Bean属性赋值,property="*"格式要求Bean的属性名字()。A、必须和表单参数类型一致B、必须和表单参数名称一一对应C、必须和表单参数数量一致D、名称不一定对应
考题
使用〈jsp:getProperty〉动作标记可以在JSP页面中得到Bean实例的属性值,并将其转换为什么类型的数据,发送到客户端。()A、StringB、DoubleC、ObjectD、Classes
考题
在JSP页面中使用〈jsp:setProperty name="beanid" property="bean的属性" value="字符串" /〉格式给Long类型的Bean属性赋值,会调用哪个数据类型转换方法?()A、Long.parseLong(String s)B、Integer.parseInt(Stirng s)C、Double.parseDouble(String s)
考题
In a JSP-centric shopping cart application, you need to move a client’s home address of the Customerobject into the shipping address of the Order object. The address data is stored in a value object classcalled Address with properties for: street address, city, province, country, and postal code. Which two JSPcode snippets can be used to accomplish this goal?()A、c:set var=’order’ property=’shipAddress’value=’${client.homeAddress}’ /B、c:set target=’${order}’ property=’shipAddress’value=’${client.homeAddress}’ /C、jsp:setProperty name=’${order}’ property=’shipAddress’ value=’${client.homeAddress}’ /D、c:set var=’order’ property=’shipAddress’jsp:getProperty name=’client’ property=’homeAddress’ / /c:storeE、c:set target=’${order}’ property=’shipAddress’jsp:getProperty name=’client’ property=’homeAddress’ / /c:set
考题
A JSP page needs to set the property of a given JavaBean to a value that is calculated with the JSP page. Which three jsp:setProperty attributes must be used to perform this initialization?()A、IdB、ValC、NameD、ParamE、ValueF、Property
考题
多选题在J2EE中,对于标记,描述正确的是()。Ajsp:param是jsp:include、jsp:forward标记的子标记B如果aa.jsp有代码:jsp:forward page=next.jspjsp:param name=name value=jb-aptech //jsp:forward,则在next.jsp中可以使用request.getParameter(name);把属性name的值取出来C如果aa.jsp有代码:jsp:forward page=next.jspjsp:param name=name value=jb-aptech //jsp:forward,则在next.jsp中可以使用request.getAttribute(name);把属性name的值取出来D如果jsp:param标记不放在jsp:forward标记内,也就是不作为jsp:forward标记的子标记,则使用浏览器查看时会显示错误页面
考题
单选题在JSP中,对〈jsp:setProperty〉标记描述正确的是()。A
〈jsp:setProperty〉和〈jsp:getProPerty〉必须在一个JSP文件中搭配出现B
就如同session.setAttribute()一样,来设计属性/值对C
和〈jsp:useBean〉动作一起便用,来设置bean的属性值D
就如同request.setAttribute()一样,来设置属性/值对
考题
单选题使用〈jsp:setProperty〉动作标记可以在JSP页面中设置Bean的属性,但必须保证Bean有对应的方法是()。A
SetXxx方法B
setXxx方法C
getXxx方法D
GetXxx方法
考题
多选题In a JSP-centric shopping cart application, you need to move a client’s home address of the Customerobject into the shipping address of the Order object. The address data is stored in a value object classcalled Address with properties for: street address, city, province, country, and postal code. Which two JSPcode snippets can be used to accomplish this goal?()Ac:set var=’order’ property=’shipAddress’value=’${client.homeAddress}’ /Bc:set target=’${order}’ property=’shipAddress’value=’${client.homeAddress}’ /Cjsp:setProperty name=’${order}’ property=’shipAddress’ value=’${client.homeAddress}’ /Dc:set var=’order’ property=’shipAddress’jsp:getProperty name=’client’ property=’homeAddress’ / /c:storeEc:set target=’${order}’ property=’shipAddress’jsp:getProperty name=’client’ property=’homeAddress’ / /c:set
考题
单选题在JSP页面中使用〈jsp:setProperty name="beanid" property="bean的属性" value="字符串" /〉格式给Long类型的Bean属性赋值,会调用哪个数据类型转换方法?()A
Long.parseLong(String s)B
Integer.parseInt(Stirng s)C
Double.parseDouble(String s)
考题
多选题A JSP page needs to set the property of a given JavaBean to a value that is calculated with the JSP page. Which three jsp:setProperty attributes must be used to perform this initialization?()AIdBValCNameDParamEValueFProperty
考题
多选题如果想在JSP页面中声明一个名字为name的变量,应该使用()标签。Ac:ifBc:setCc:outDc:forEach
热门标签
最新试卷