カテゴリテーブルがあります
categoryId
catName
description
image
に を入力し、その値に を入力<h:selectOneMenu>
しitemLabel
categoryName
ますcategoryId
。
どうすればこれを行うManagedBean
ことができますか??
カテゴリテーブルがあります
categoryId
catName
description
image
に を入力し、その値に を入力<h:selectOneMenu>
しitemLabel
categoryName
ますcategoryId
。
どうすればこれを行うManagedBean
ことができますか??
これには SelectItem のリストを使用できます。マネージド Bean で次のような selectitems のリストを生成するメソッドが必要になります。
public List<SelectItem> getAllCatagories(){
List<SelectItem> items = new ArrayList<SelectItem>();
List<Category> categoryList = dao.getAllCategory();
for(Category category: categotyList){
items.add(new SelectItem(category.getCategoryId(), category.getName()));
}
return items;
}
そして、このように使用します
<h:selectOneMenu value="#{controllerBean.selectedCategory}" >
<f:selectItems value="#{controllerBean.allCategories}"/>
</h:selectOneMenu>
このようなことを試してください
xhtml
<h:form>
<h:panelGrid>
<h:selectOneMenu value="#{myMB.id}">
<f:selectItem itemLabel="Please select one" itemValue="#{null}" />
<f:selectItems value="#{myMB.items}" />
</h:selectOneMenu>
</h:panelGrid>
<h:commandButton action="#{myMB.go}" value="Go"/>
</h:form>
メガバイト
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import javax.annotation.PostConstruct;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ViewScoped;
import javax.faces.model.SelectItem;
@ManagedBean
@ViewScoped
public class MyMB implements Serializable{
private static final long serialVersionUID = 1L;
private List<SelectItem> items = new ArrayList <SelectItem> ();
private Long id;
@PostConstruct
public void init(){
SelectItem si = new SelectItem();
si.setLabel("My Label");
si.setValue(666L);
items.add(si);
}
public List<SelectItem> getItems() {
return items;
}
public void setItems(List<SelectItem> items) {
this.items = items;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public void go(){
System.out.println(id);
}
}
f:selectItems
タグを使用する必要があります。
<h:selectOneMenu value="#{yourBean.itemValue}">
<f:selectItems value="#{yourBean.yourItems}" />
</h:selectOneMenu>
次に、データベースから取得した値を格納するフィールドYourBean
が必要です。マップのキー (文字列であることが推奨されます) はラベルであり、値は関連付けられたオブジェクトです。Map
Map<String,YourObject> yourItems = new HashMap<String,YourObject>();
public Map<String,YourObject> getYourItems() {
return yourItems;
}