Servlet訪問Javabean並傳結果給jsp

來源:互聯網
上載者:User

標籤:cti   wal   實作類別   jsp   包名   .com   ges   blog   建立   

 

 1.先建立包名:

2.建立實體類

  參考二維表,考慮各個欄位名字、類型

  在entity包裡面建立一個類,代碼如下:

public class House {    private String id;    private String name;    private String address;    public String getId() {        return id;    }    …//其它

 

3.建立商務邏輯介面(HouseService)和實現(HouseServiceImpl)

經理寫介面:public interface HouseService {    public List<House> getAllHouses();}小弟寫實作類別:@Override    public List<House> getAllHouses() {        List<House> houseList = new ArrayList<House>();        //1    光頭強的家    森林188號        //2    熊大的家    森林樹洞一期3樓        House h1 = new House();        House h2 = new House();                h1.setId("1");        h1.setName("光頭強的家");        h1.setAddress("森林188號");                h2.setId("2");        h2.setName("熊大的家");        h2.setAddress("森林樹洞一期3樓");                        houseList.add(h1);        houseList.add(h2);                return houseList;    }

 

4.建立一個(Servlet)控制器,調用service擷取資料集List【把結果輸送到jsp,並跳轉過去】

    在action包中建立Servlet:HouseAction_showAllHoses

4. 建立一個show.jsp,取得request對象中的List

核心代碼:request.getAttribute("houseList_label");

剩下參考war包中的代碼,跟之前的例子也是一樣的

 

Servlet訪問Javabean並傳結果給jsp

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.