Exam interpretation- Q2
Given the JSP code:
10. <html>
11. <body>
12. <jsp:useBean id='customer' class='com.example.Customer' />
13. Hello, ${customer.title} ${customer.lastName}, welcome
14. to Squeaky Beans, Inc.
15. </body>
16. </html>Which three types of JSP code are used? (Choose three.) A. Java code B. template text C. scripting code D. standard action E. expression language Answer: B, D, E 相關說明: template text (模板文本) http://onjava.com/onjava/excerpt/jsp2_3/index1.html standard action(標準操作) http://www.roseindia.net/tutorial/java/jsp/jspstandardaction.html expression language(表達式語言)EL http://java.sun.com/j2ee/1.4/docs/tutorial/doc/JSPIntro7.html http://java.sun.com/products/jsp/syntax/2.0/syntaxref207.html http://www.javaworld.com.tw/confluence/pages/viewpage.action?pageId=1031
文章標籤
全站熱搜
