- 浏览: 296506 次
- 性别:
- 来自: 上海
最新评论
-
22199143:
...
当在重启Tomcat容器时 Exception in Thread "HouseKeeper" java.lang.NullPointerException -
liuqq:
一直用Oracle开发,几乎没有接触过其他数据库。使用Mysq ...
The Nested Set Model -
yjsxxgm:
yjsxxgm 写道FFFFFFFFFFFFFFFWWW
java 访问wcf -
yjsxxgm:
FFFFFFFFFFFFFFF
java 访问wcf -
hjp222:
scanIntervalSeconds 是重新启动,并非真正的 ...
Jetty 热部署
文章列表
public long increment(String name, int size)
throws SystemException {
if (size < _MINIMUM_INCREMENT_SIZE) {
size = _MINIMUM_INCREMENT_SIZE;
}
CounterRegister register = getCounterRegister(name);//从hashMap中取出
synchronized (register) {
long newValue = register.getCurrent ...
- 2009-10-24 14:08
- 浏览 1062
- 评论(0)
http://docs.liferay.com/portal/4.2/official/liferay-portlet-development-guide-4.2/multipage/ch02.html
记下地址
- 2009-10-23 14:40
- 浏览 885
- 评论(0)
最近在项目中使用 Spring 和 Hibernate 进行开发,有感于 Criteria 比较好用,在查询方法 设计上可以灵活的根据 Criteria 的特点来方便地进行查询条件的组装。现在对 Hibernate的Criteria 的用法进行总结: Hibernate 设计了 CriteriaSpe ...
- 2009-10-23 13:12
- 浏览 891
- 评论(0)
Hibernate3 提供了一种创新的方式来处理具有“显性(visibility)”规则的数据,那就是使用Hibernate filter。 Hibernate filter是全局有效的、具有名字、可以带参数的过滤器, 对于某个特定的Hibernate session您可以选择是否启用(或禁用)某 ...
- 2009-10-23 13:11
- 浏览 1177
- 评论(0)
spring side3 学习地址的:http://www.blogjava.net/youxia/archive/2009/07/22/287839.html
- 2009-10-23 10:19
- 浏览 801
- 评论(0)
需要最少的包:commons-logging.jarjavax.servlet.jarorg.mortbay.jetty.jarorg.mortbay.jmx.jar
//代码:以嵌入模式启动Jetty
import org.mortbay.http.HttpContext;import org.mortbay.http.HttpServer;import org.mortbay.http.SocketListener;import org.mortbay.http.handler.ResourceHandler;
public class JettySample { public ...
- 2009-10-18 16:52
- 浏览 995
- 评论(0)
portal-kenel.jar 不依赖任何非标准jar(只依赖jdk\junit\j2ee5\portlet等)
<target name="compile"> <mkdir dir="classes" />
<!-- <path id="project.classpath"> <pathelement path="${classpath}" /> <path refid="lib.classpath" /> ...
- 2009-10-17 11:59
- 浏览 1734
- 评论(0)
<target name="testerpaht"> <path id="varp"> <fileset dir="${project.dir}/lib/portal" includes="*.jar" /> </path> <path id="mypath"> <fileset dir="${project.dir}/lib/development" includes="jsp- ...
- 2009-10-17 11:36
- 浏览 964
- 评论(0)
http://blog.csdn.net/smilingleo smilingleo的博客
http://tyler-zhou.iteye.com/ tyler-zhou博客
- 2009-10-16 22:43
- 浏览 964
- 评论(0)
Liferay是基于SOA理念设计的,很容易通过Web Services对外提供服务接口,下面简单介绍一下。
Liferay如何对外提供服务?
1、在service.xml中编辑,增加一个<entity name="xx" local-service="false" remote-service="true" />2、ant build-service-xxxx (portal-impl/build.xml)3、修改XXServiceImpl, 写入你要对外提供的方法逻辑;4、ant build-service-xxxx ...
- 2009-10-16 22:34
- 浏览 4550
- 评论(0)
Lazy Loading (Load&Get) http://blog.csdn.net/nickcen/archive/2007/07/13/1688376.aspx Hibernate缓存机制 http://www.iteye.com/topic/249465 hibernate二级缓存攻略 http://www.iteye.com/topic/18904 为什么不用SQL,而用HQL http://i-proving.ca/space/Technologies/Hibernate/SQL+vs+HQL+with+the+Session+Cache
- 2009-10-16 22:01
- 浏览 941
- 评论(0)
过一会,您就会发现向类路径手工添加 bin 目录和 JAR 归档文件太过繁琐。这时您可能会想要使用 CLASSPATH 环境变量。可以只向 CLASSPATH 环境变量添加一次目录和 JAR 归档文件,之后就不需要在每次运行 javac 或 java 时都要再键入 ...
- 2009-10-16 21:59
- 浏览 1294
- 评论(0)
spring的配置文件<bean id="exporter" class="org.springframework.jmx.export.MBeanExporter" lazy-init="false"> <property name="beans"> <map> <entry key="hibernate:name=statisticsService" value-ref ...
- 2009-10-15 13:21
- 浏览 1163
- 评论(0)
Database sharding is a way of scaling your database horizontally. For a given table or set of tables, you split up the data that is stored and fetched based on a given hash or something like that. Google, Facebook, and Wikipedia all use database sharding.
Table of Contents [-+]
1 Benefits ...
- 2009-10-15 12:40
- 浏览 1598
- 评论(0)