摘要: 速動畫教程第二十六集 WebWork2 開發教程

          目錄:
          1、完整的注冊和登錄演示
          2、Model-Driven(模型驅動)
          3、使用 JUnit 進行單元測試
          4、配置表單驗證
          5、國際化支持
          6、集成 spring  閱讀全文

          posted @ 2006-08-18 01:54 oksonic 閱讀(9777) | 評論 (21)編輯 收藏

               摘要: 速動畫教程第二十五集? 使用 xfire 開發 web service 應用 ? 下載地址: http://this.oksonic.cn ...  閱讀全文

          posted @ 2006-07-19 21:20 oksonic 閱讀(9201) | 評論 (8)編輯 收藏

               摘要: 速動畫教程第二十四集 Tapestry4 初試 ? 下載地址:http://this.oksonic.cn ? 開發工具: ...  閱讀全文

          posted @ 2006-07-16 01:05 oksonic 閱讀(5877) | 評論 (13)編輯 收藏

               摘要: 速動畫教程第二十三集 WebWork2 示例 下載地址: http://this.oksonic.cn? 準備工作: ??? Eclipse3.1.1?? MyEclipse4.1.1?? Tomcat5.1.x ...  閱讀全文

          posted @ 2006-07-15 16:08 oksonic 閱讀(3848) | 評論 (2)編輯 收藏

               摘要: 速動畫教程第二十二集 使用Struts上傳文件 ? 制作環境: ??? Eclipse3.1....  閱讀全文

          posted @ 2006-07-05 23:30 oksonic 閱讀(8057) | 評論 (22)編輯 收藏

               摘要: 速動畫教程第二十一集 IIS 集成 Tomcat ? 下載地址: http://this.oksonic.cn制作環境: ? Windows ...  閱讀全文

          posted @ 2006-07-03 11:29 oksonic 閱讀(5873) | 評論 (9)編輯 收藏

               摘要: 速動畫教程第二十集? 在線編輯器 FCKeditor 的應用 ? 下載地址: http://sonic.peakle.net/download/sonic020.rar ...  閱讀全文

          posted @ 2006-05-11 17:25 oksonic 閱讀(9234) | 評論 (12)編輯 收藏

          速動畫教程第十九集 eXtremeComponents 的基礎配置


          錄像下載: http://sonic.peakle.net/download/sonic019.rar

          臨時下載: http://this.oksonic.cn 下載欄目,需要注冊用戶
          ?

          開發環境:Eclipse 3.1.1? MyEclipse 4.1.1?? Tomcat 5.5

          ?

          此教程參考文章:http://www.aygfsteel.com/lucky/archive/2006/02/26/32479.html

          ?

          先下載發行包 http://sourceforge.net/projects/extremecomp

          ?

          將包內的所有 jar 文件拷貝到項目的 WEB-INF/lib 目錄中

          ?

          dist 目錄中的 extremecomponents.tld 文件拷貝到 WEB-INF

          test 目錄中的 test.jsp 文件拷貝到 webroot 目錄中

          images 文件夾拷貝到 webroot 目錄中

          ?

          需要對原文件 test.jsp 修改!

          ?

          修改了標簽路徑

          ?

          然后刷新一下工程,布署工程,起動 Tomcat 打開瀏覽器,輸入 http://localhost/table/test.jsp 進行測試

          ?

          看一下 test.jsp 文件內容

          ?

          以下是創建一個 list 集合,list 集合中是一組? java.util.HashMap 集合

          <% java.util.List presidents = new java.util.ArrayList(); %>

          ?

          <% java.util.Map president = new java.util.HashMap(); %>

          <% president.put("name", "George Washington"); %>

          <% president.put("nickname", "Father of His Country"); %>

          <% president.put("term", "1789-1797"); %>

          <% presidents.add(president); %>

          ?

          <% president = new java.util.HashMap(); %>

          <% president.put("name", "John Adams"); %>

          <% president.put("nickname", "Atlas of Independence"); %>

          <% president.put("term", "1797-1801"); %>

          <% presidents.add(president); %>

          ?

          <% president = new java.util.HashMap(); %>

          <% president.put("name", "Thomas Jefferson"); %>

          <% president.put("nickname", "Man of the People, Sage of Monticello"); %>

          <% president.put("term", "1801-09"); %>

          <% presidents.add(president); %>

          ?

          <% president = new java.util.HashMap(); %>

          <% president.put("name", "James Madison"); %>

          <% president.put("nickname", "Father of the Constitution"); %>

          <% president.put("term", "1809-17"); %>

          <% presidents.add(president); %>

          ?

          <% president = new java.util.HashMap(); %>

          <% president.put("name", "James Monroe"); %>

          <% president.put("nickname", "The Last Cocked Hat, Era-of-Good-Feelings President"); %>

          <% president.put("term", "1817-25"); %>

          <% presidents.add(president); %>

          ?

          <% president = new java.util.HashMap(); %>

          <% president.put("name", "John Adams"); %>

          <% president.put("nickname", "Old Man Eloquent"); %>

          <% president.put("term", "1825-29"); %>

          <% presidents.add(president); %>

          ?

          <% request.setAttribute("pres", presidents); %>

          ?

          以下代碼使用 eXtremeComponents 的標簽來生成表格

          ?

          ??? <ec:table

          ??????? items="pres"

          ??????? action="${pageContext.request.contextPath}/test.jsp"

          ??????? imagePath="${pageContext.request.contextPath}/images/table/*.gif"

          ??????? title="Presidents"

          ??????? width="60%"

          ??????? rowsDisplayed="5"

          ??????? >

          ??????? <ec:row>

          ??????????? <ec:column property="name"/>??? ??? 顯示的列

          ??????????? <ec:column property="nickname"/>

          ??????????? <ec:column property="term"/>

          ??????? </ec:row>

          ??? </ec:table>

          ?

          ?

          這集錄像的內容很簡單,用來測試一下新的錄像制作工具!!!

          ?

          bye!!!

          posted @ 2006-04-22 23:21 oksonic 閱讀(4731) | 評論 (10)編輯 收藏

               摘要: 速動畫教程第十八集 SSH框架的構建 錄像下載 http://sonic.peakle.net/download/sonic018.rar? 此過程將包括以下幾個框架 Str...  閱讀全文

          posted @ 2006-03-29 00:12 oksonic 閱讀(16581) | 評論 (37)編輯 收藏

          今天注冊了一個域名,以后請大家使用這個域名訪問!

          www.oksonic.com

          posted @ 2006-03-28 00:15 oksonic 閱讀(3916) | 評論 (15)編輯 收藏

          僅列出標題
          共4頁: 上一頁 1 2 3 4 下一頁 

          posts - 103, comments - 1104, trackbacks - 0, articles - 0

          Copyright © oksonic

          主站蜘蛛池模板: 连城县| 天气| 镇康县| 南宫市| 石林| 富顺县| 临沭县| 延吉市| 类乌齐县| 安福县| 绵阳市| 瓦房店市| 金阳县| 页游| 冀州市| 公主岭市| 安图县| 扎鲁特旗| 巴楚县| 美姑县| 武隆县| 阆中市| 巨野县| 方正县| 泾阳县| 忻城县| 奉化市| 香港| 英超| 中江县| 绥芬河市| 贵阳市| 徐汇区| 仁怀市| 高淳县| 中牟县| 鸡泽县| 和平县| 柏乡县| 珠海市| 大荔县|