JSF页面什么都没有显示;我在服务器上运行(提交)页面时,将JSF框架添加到lib文件夹中,但是没有HTML表单或结果。
我正在使用的IDE是:Eclipse。
这是我的Java代码:
listfile #contain list of all files
ID #contain ID of all products
N <- read.csv("/home/folder/Noah.csv")
N_ID <- N$product_ID #contain Noah's product IDs
res <- matrix(0, nrow = nrow(listfile), ncol = nrow(ID),dimnames =
list(unlist(listfile), unlist(ID))) # create matrix res
for(j in 1:length(colnames(res))){
if(N_id %in% j){
paste(1,res)
} else {
paste(0,res)
}
这是我的XHTML代码:
import javax.faces.bean.ApplicationScoped;
import javax.faces.bean.ManagedBean;
@ManagedBean
@ApplicationScoped
public class Counter {
public Counter() {}
private int value = 0;
public String CounterValue() {
setValue(getValue() + 1);
return "counter";
}
public int getValue() {
return value;
}
public void setValue(int value) {
this.value = value;
}
}
这就是结果:
答案 0 :(得分:0)
您需要在web.xml中配置FacesServlet。只需遍历web.xml中的configure FacesServlet配置部分,让我知道您是否仍然面临问题。 你可以经历 http://javaonlineguide.net/2015/06/jsf-2-2-hello-world-tutorial-with-example-basic-concepts.html