0

NetBeans で KendoUI の jsp ラッパーを使用したいと考えています。

コントローラーに ComboBox のサンプル コードを追加しました。

@RequestMapping(value = {"/", "/index"}, method = RequestMethod.GET)
public String index(Model model) {
    model.addAttribute("fabrics", new DropDownListItem[] {
            new DropDownListItem("Cotton", "1"),
            new DropDownListItem("Polyester", "2"),
            new DropDownListItem("Cotton/Polyester", "3"),
            new DropDownListItem("Rib Knit", "4")
    });

    model.addAttribute("sizes", new String[] {
        "X-Small",
        "Small",
        "Medium",
        "Large",
        "X-Large",
        "2X-Large"
    });

    return "web/combobox/index";
} 

私はインポートを行います:

import com.kendoui.spring.models.DropDownListItem;

しかし、NetBeans は言う: package import com.kendoui.spring.models does not exist . NetBeans の「アーティファクトを手動でインストールする」機能を使用して、pom.xml に kendo-taglib-2013.1.319.jar の依存関係を追加しました。HTML 側で KendoUI を使用すると、すべて正常に動作します。

http://docs.kendoui.c​​om /getting-started/using-kendo-with/jsp/introduction にある要件には、「エンタープライズ開発者向けの Eclipse Juno (J2EE サポート)」が必要であると記載されています。

皆さんは、NetBeans で KendoUI をうまく使ったことがありますか? はいの場合、次のステップは何ですか?

4

1 に答える 1