不显示在xhtml的服务器端生成的JSF代码

时间:2017-04-16 19:09:34

标签: java jsf primefaces facelets

我使用StringBuilder在java上生成facelet。当我尝试在.xhtml页面中生成代码时,它只显示secuencia <- sample(c("A","C","T","G"),60, replace = TRUE, prob = c(0.2,0.3,0.2,0.3)) 文本。但是,当我打开我的页面代码时,它会显示出类似的内容。

h:outputlabel

有什么问题?我可以在java中动态创建facelets吗?或者如何转换它? 这是我的.xhtml页面

</style><span class="preformatted"><h:form style="margin: 0 auto"><h:panelGrid columns="1"><h:outputLabel id="label" for="descr">descr</h:outputLabel>  <div> <b:inputText required="true" id="descr" value="#{parserBean.listWithData[0]}"></b:inputText></div><h:outputLabel id="label" for="birthday">birthday</h:outputLabel><p:calendar id="birthday" value="#{parserBean.listWithData[1]}" pattern="MM/dd/yyyy HH:mm:ss" /><h:outputLabel id="label" for="place">place</h:outputLabel>    <div> <b:inputText required="true" id="place" value="#{parserBean.listWithData[2]}"></b:inputText></div></h:panelGrid> </h:form></span></body>

0 个答案:

没有答案