本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- zysnba
- xiangjie88
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sichunli_030
- sam123456gz
- arpenker
- 龙儿筝
- tanling8334
- kaizi1992
- gaojingsong
- xpenxpen
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- lemonhandsome
- luxurioust
- jbosscn
- mengjichen
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- kingwell.leng
- mwhgJava
最新文章列表
在用primefaces中的dataTable时遇到一个includeViewParams="true"问题
在用primefaces中的dataTable时遇到一个includeViewParams="true" 奇怪问题,在表格里或许你会需要查看,修改的操作,那可能在里边你就可能需要这么写:
<h:link value="查看" outcome="页面">
<f:param ...
javax.faces.model.SelectItem能用set展示数据吗?No
在JSF的项目中,我们知道javax.faces.model包下的SelectItem类可以用数组或者List的实现类来封装数据并展示。当下拉框的数据要展示排序后并且没有重复值的情况时,我们难免会想到把SelectItem封装到Set集合中。经过相关测试后发现java.util包下的Set不能封装SelectItem,先放上修改后的SelectItem代码,再一一分析:
import o ...
列表中的记录上下移动-扩展(移动之后继续保持选择状态)
继上一篇列表中的记录上下移动之后的一个扩展
在某一条纪录上下移动之后,继续保持纪录处于选中状态
移动前:
向下移动后: 在 liteBean中定义一个 int类型的数值,用来纪录每次选中的时候,该纪录的行数列
private int index;
在上移的Action中添加以下内容
//上移成功之后 给index赋值为选中条目的上一个行序列
index = grid.getSel ...
使用JSF遇到一个小问题
使用JSF的时候,发现对一个text的输入框输入了string类型以后,但是在对应的BEAN里面,该字段是Integer形的,就会报NumberFormatException.
遇到问题还是要多思考阿
JSF 2 + Spring 3 integration example
In this tutorial, we will show you how to integrate JSF 2.0 with Spring 3 using :
1.JSF XML faces-config.xml
2.Spring annotations
3.JSR-330 standard injection
Tools and technologies used :
1.JSF 2.1.1 ...
Full Web Application Tomcat JSF Primefaces JPA Hibernate – Part 2
Full Web Application Tomcat JSF Primefaces JPA Hibernate – Part 2
This post continues from part 1 of this tutorial.
In the “com.mb” package you will need to create the classes bellow:
package com. ...
Full Web Application Tomcat JSF Primefaces JPA Hibernate – Part 1
Full Web Application Tomcat JSF Primefaces JPA Hibernate – Part 1
We created this post that will show how to create a full web application using the following tools: Tomcat7, JSF2 (Facelets and Librar ...
Lazy JSF Primefaces Datatable Pagination – Part 2
Lazy JSF Primefaces Datatable Pagination – Part 2
The page code is very simple and there is no complication. Check the “index.xhtml” code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transi ...
<p:selectBooleanCheckbox /> cannot work with <f:ajax>
项目上面使用如下:
<p:dataTable ......>
......
<p:column headerText="xxxx">
<p:selectBooleanCheckbox .....>
<f:ajax event="click&q ...