- 浏览: 37248 次
- 性别:
- 来自: 陕西
-
最新评论
文章列表
Eclipse Tip: Sharing Java project settings
The Eclipse 3.1 has a new feature. Now the Java project settings like Compiler and Code Style can be shared with the entire team using the version control tool.
To do this right click the project in Package Explorer or Navigator view and got to either Java ...
- 2009-09-03 07:44
- 浏览 763
- 评论(0)
Copy database driver to
C:\usr\jboss\jboss-4.2.3.GA\server\default\lib
like h2.
- 2009-09-02 21:37
- 浏览 671
- 评论(0)
Eclipse gets past the splash screen but then an empty window appears
./eclipse -vmargs -Dorg.eclipse.swt.browser.XULRunnerPath=/usr/eclipse/libs/xulrunner19
http://wiki.eclipse.org/IRC_FAQ#Crashers.2C_Freezing.2C_and_other_Major_Issues
http://www.eclipse.org/swt/faq.php#specifyxulrunner
- 2009-08-31 21:04
- 浏览 657
- 评论(0)
http://shervinasgari.blogspot.com/2009/02/hash-user-password-in-seam-211-manually.html
public String saveProcessUser() {
// Check if a new password has been entered
if (currentUser.getPasswordHash() != null && !"".equals(currentUser.getPasswordHash())) {
if ...
- 2009-08-31 16:35
- 浏览 937
- 评论(0)
Overwrite default fontsize
<style type="text/css">
.rich-panel-body {font-family: 'Calibri'; font-size:x-large }
</style>
- 2009-08-27 14:48
- 浏览 723
- 评论(0)
1) setOrder("Calendar.datesStart asc");
2) http://seamframework.org/Community/EntityQueryAndOrderingIssue
- 2009-08-11 09:51
- 浏览 616
- 评论(0)
Practical JBoss Seam Projects
Page 159 to 161
1) jBPM Supporting tasks implemented in variety of ways (web pages, business components, business rules, etc.), connected together with a structured workflow that can span multiple users across potentially long periods of time.
2) And in the case of Sea ...
- 2009-08-04 11:48
- 浏览 797
- 评论(0)
Page 77
1) sort the enityHome List
1. Comparator
2. @OrderBy at the parent entity
- 2009-08-01 18:14
- 浏览 700
- 评论(0)
1) add entity by method-binding
page 18
#{tipAction.add(tip)}
public void add(GolfTip tip) {
entityManager.persist(tip);
activeTip = tip;
facesMessages.add(
"Thanks for the tip, #{activeTip.author}!");
retrieveAllTips();
}
2) fact ...
- 2009-07-30 14:32
- 浏览 656
- 评论(0)
-startup
plugins/org.eclipse.equinox.launcher_1.0.200.v20090520.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090519
-product
org.eclipse.epp.package.jee.product
-vm
C:\Java\jdk1.6.0_13\bin\javaw.exe
--launcher.XXMaxPermSize
256M
-showsplash
org.eclipse.platfo ...
- 2009-07-14 12:19
- 浏览 768
- 评论(0)
1) check input data, between 0 - 100
<h:inputText value="#{numberBean.userNumber}" required="true">
<f:validateLongRange minimum="0" maximum="100"/>
</h:inputText>
2) what is differences between action and actionlistener
Basica ...
- 2009-06-30 09:05
- 浏览 352
- 评论(0)
http://folkworm.ceri.memphis.edu/ew/SCHEMA_DOC/comparison/erd.htm
Relationships
The lines with symbolized ends connecting database entities represent the relationship between two tables. Each line describe both directions of the relationship. There are four basic relationships that can be used to d ...
- 2009-06-23 12:23
- 浏览 757
- 评论(0)
http://yfyang.iteye.com/blog/262041
http://blog.csdn.net/gengv/archive/2009/06/12/4263633.aspx
http://www.vine-server.com/blog/index.php?UID=1234967481
http://www.experts-exchange.com/Programming/Languages/Java/J2EE/Frameworks/JSF/Q_24123308.html
http://codingclues.eu/2008/richfaces-richmodalpan ...
- 2009-06-18 14:37
- 浏览 730
- 评论(0)
1)DataModel PersistentSet problem from rich subtable
http://www.jboss.org/index.html?module=bb&op=viewtopic&t=113070&start=0&postdays=postDays&postorder=postOrder&highlight=highlight
2)Using Sets in JSF
http://www.jroller.com/pmuir/entry/using_sets_in_jsf
<function>
...
- 2009-06-18 14:11
- 浏览 696
- 评论(0)
http://www.enet.com.cn/article/2005/1223/A20051223485993.shtml
容器类可以大大提高编程效率和编程能力,在Java2中,所有的容器都由SUN公司的Joshua Bloch进行了重新设计,丰富了容器类库的功能。
Java2容器类类库的用途是“保存对象”,它 ...
- 2009-06-16 15:42
- 浏览 601
- 评论(0)