- 浏览: 260252 次
- 性别:
- 来自: 南京
最新评论
-
xuhuan1108:
请问必须都是主键吗?@PrimaryKeyJoinColumn ...
用@SecondaryTable实现多表联合到一个实体 -
renwanly:
共享一下,还是注册服务是王道:http://vboxvmser ...
让VirtualBox的虚拟机器在电脑开机时自动启动 -
liuyuantp:
结果取整。
计算总页数算法 -
jespring:
当数据量很大的时候,在建索引过程中,电脑挂了后,再继续建索引, ...
第28章、Hibernate Search -
meteormatt:
我试了下,怎么会不能用?
Eclipse更新站点
文章列表
原文地址:http://dev.ymeng.net/integrate-gwt-into-jboss-seam.html
这几天在JBoss Seam集成GWT,试了很多时间,总结出一些问题:
JBoss Seam版本:2.1.0.SP1
Google Web Toolkit版本:1.5.3
1、gwt-servlet.jar版本问题:Seam中自带的gwt-servlet.jar版本可能和你使用的GWT版本不一致,如果你编译GWT程序的版本与Seam中gwt-servlet.jar版本不一致,可能会出现一些奇怪的问题,最好的办法是将Seam中的gwt-servlet.jar换成GWT中 ...
- 2009-02-04 18:04
- 浏览 1977
- 评论(0)
给RichFaces设置一个皮肤很简单,只要在web.xml文件中写以下这一段就可以了:
<context-param>
<param-name>org.richfaces.SKIN</param-name>
<param-value>ruby</param-value>
</context-param>
但是,有时候你也许会要在程序运 ...
- 2009-02-04 12:45
- 浏览 1793
- 评论(0)
无意间看到了http://recaptcha.net/
太好的一个创意了http://stauren.net/log/i34rj1qgf.html(某网友用中文解释了下)
总觉得这个上面能有很大的文章做。不过一时没什么好点子,所以就放过来等着以后看会不会有什么点子。
- 2009-02-02 17:22
- 浏览 1009
- 评论(0)
最近装了IE8 RC1,最新版的,之前只是看过IE8 beta1,但是有个模拟IE7按钮,现在没了
有关IE8下浏览网站变形等问题,在这篇文章里面已经详细说了(虽然废话多了点)
某些网站可能无法正确显示,或在 Windows Internet Explorer 8 中正常工作
另外这篇博客文章里面也有相关的说明:
你的网站已经为 Internet Explorer 8 做好准备了吗?
不过上面的方法在我自己做的东西里面,稍微试了下,没用,最后还是自己发现IE8的开发者工具里面有个下拉列表
浏览器模式
改为IE7,就完全没有问题了。用地址栏或者菜单栏里面的兼容模式,问题 ...
- 2009-02-02 17:17
- 浏览 2458
- 评论(0)
http://www.chenfangyi.com/google-app-ghs-gfw.html
留着备用
- 2009-01-19 16:32
- 浏览 1167
- 评论(2)
表达式的顺序:秒 分钟 小时 一个月的某天 月 一周的星期几 年(可要可不要)每个符号的意思:* 表示所有表达式允许的合法值? 表示没有设置值,即不解释。不关心这个格式, 表示增加值/ 表示每多少- 表示从多少到多少L 表示last什么的最后W 表示weekday# 表示2#3 这个月的第三个星期一
- 2009-01-16 03:55
- 浏览 920
- 评论(0)
request:------------------------------------------------------------------------FacesContext context = FacesContext.getCurrentInstance();ExternalContext ec = context.getExternalContext();HttpServletRequest request = (HttpServletRequest) ec.getRequest();session:---------------------------------------- ...
- 2009-01-16 03:53
- 浏览 2376
- 评论(0)
在JSF的valueChangeListener中默认的是传入前一个操作的值
比如一个文本框绑定的backing bean的属性为userName,那么在valueChangeListener中得到的userName值为change之前的,要想得到变化后的值,需要用valueChangeListener传入的ActionEvent实例的getNewValue方法来获得
- 2009-01-16 03:53
- 浏览 1591
- 评论(0)
一个javax.faces.FacesException: Problem in renderResponse: Nested form found on the page. The form action element can not be nested错误,又是找遍各大搜索引擎都没见结果,还是在ICEFaces的论坛里面有人提了这个问题,然后回答竟然是facelets的一个bug,并且ICEFaces的新版本会在自己的facelets实现里面修改这个补丁。
碰巧了,ICEFaces在20080414出了新版本,我遇到这个问题的同天……
下了新版本,简单看了下说明,更新到项目里面,运行,好了 ...
- 2009-01-16 03:53
- 浏览 1679
- 评论(0)
ValueChangeListener的使用
- 博客分类:
- JSF
首先要在页面组件如intputText中加属性
1、valueChangeListener="#{验证程序}"
2、immediate="true"
3、onchange="submit();"(或onblur等触发事件)
然后在验证的程序的最后要加上FacesContext.getCurrentInstance().renderResponse()
- 2009-01-16 03:52
- 浏览 1317
- 评论(0)
FacesContext ctx = FacesContext.getCurrentInstance();
String contentType = "text/html;charset=utf-8";
HttpServletResponse response = (HttpServletResponse) ctx
.getExternalContext().getResponse();
response.setContentType(contentType ...
- 2009-01-16 03:52
- 浏览 1231
- 评论(0)
缺少jta.jar
找半天,虽然javaee.jar里面有这个类,但是不是javaee.jar的问题
- 2009-01-16 03:51
- 浏览 1043
- 评论(0)
private javax.faces.component.html.HtmlDataTable table;
public void find() {
//查找数据
table=new javax.faces.component.html.HtmlDataTable();
table.setId("tableid1");
table.setValue(hotels);
table.setVar("var11");
javax.faces.component.html.HtmlColum ...
- 2009-01-16 03:51
- 浏览 2026
- 评论(0)
原文:JSF实现验证码
public class ImageData implements Serializable {
private static final long serialVersionUID = -8161565799237268271L;
private BufferedImage image;
Integer width = 60;
Integer height = 20;
Color bankgroud = new Color(0xFFFFFF);
Color drawColor = new Color(0x00000 ...
- 2009-01-16 03:50
- 浏览 1690
- 评论(2)
格式:<prop key="hibernate.hbm2ddl.auto">update</prop>
## 自动schema输出#hibernate.hbm2ddl.auto create-drop#hibernate.hbm2ddl.auto create#hibernate.hbm2ddl.auto update
create
Hibernate will create the database when the entity manager factory is created (actually when Hibernate's Sessio ...
- 2009-01-16 03:49
- 浏览 1229
- 评论(0)