ECLIPSE初學手記(2)

來源:互聯網
上載者:User
初學
4.Junit的使用







































首先我們給Hello類添加一個abs()方法,作用是返回絕對值







































public int abs(int n){







































        return n>0?n:(-n);







































    }







































選中HelloWorld.java,右鍵點擊,選擇New->JUnit Test Case:







































Eclipse在詢問是否添加junit.jar包之後,確定後建立一個HelloworldTest類,用來測試Helloworld類。







































選中setUp()和tearDown(),然後點擊“Next”:

















































































選擇要測試的方法,在前面打勾.

















































































再在HelloWorldtest中添加測試代碼:

















































































點擊Run as Junit,左側導覽列切換到Junit.如果測試通過,將為綠色顯示.







































5.添加tomcat應用程式

















































































按照嚮導完成即可.可以看到在server.xml中增加了如下內容:







































<Context path="/testApp" reloadable="true" docBase="D:\eclipse\workspace\testApp" workDir="D:\eclipse\workspace\testApp\work\org\apache\jsp" />







































如果右擊src添加包和類的話,儲存後會自動添加到classes中.







































右擊testApp建立檔案index.jsp,添加如下內容:







































<%@ page contentType="text/html;charset=GBK"%>







































 







































<html>







































    <head>







































       <title>







































           Helloworld







































       </title>







































    </head>







































    <body>







































       Helloworld!







































    </body>







































</html>







































然後啟動tomcat,在瀏覽器中輸入http://127.0.0.1:8080/testApp/index.jsp,即可看到index的內容了.






相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.