- 浏览: 195407 次
- 性别:
最新评论
-
sun5244725:
<if test="tenantIds.siz ...
Mybatis中传入List条件 -
springaop_springmvc:
可以参考最新的文档:如何在eclipse jee中检出项目并转 ...
Maven+Mybatis+Spring配置之第一步:配置pom.xml依赖 -
terryworld:
jiql 有很多SQL语法还不支持. 结果集内结果本身超过1 ...
jiql----Google APP Engine里的jdbc -
burnquist:
不知道jdoconfig.xml怎么写,直接复制官网的就报错
Google App Engine中使用JDO增强的问题 -
Aspen:
网上资料太少了,我也遇到类似的问题,郁闷中
Google App Engine中使用JDO增强的问题
文章列表
摘录自Spring文档的3.8节。
1.BeanPostProcessor
BeanPostProcessor接口有两个方法:
public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException;
public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException;
可以在容器中的每个bean实例化之前和之后加上特殊的处理。Spring提供 ...
初始化方法的调用顺序:
1.@PostConstruct修饰的方法
2.InitializingBean接口的afterPropertiesSet()方法
3.在xml中配置的init()方法
Destroy方法的调用顺序:
1.@PreDestroy修饰的方法
2.DisposableBean接口的destroy()方法
3.在xml中定义的destroy()方法
1.p-namespace
在Spring3.0中,使用p-namespace来简化以前对的配置。他们使用对比如下:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.sp ...
一、搭建开发环境
1.给Eclipse安装Flex Builder插件(Flex4.0之后改为叫Flash Builder)
2.给Eclipse安装Google App Engine的插件,这个在Google App Engine官方网站上能找到相关的文档。
二、新建GAE项目
略过,这个没什么好说的
三、给GAE项目加Flex的Nature
在项目名上右键==》Flex Project Nature==》Add Flex Project Nature
然后服务器选择J2EE和BlazeDS
添加完Flex的Nature之后需要设置Flex Server(在项目的属性里)里的
Ro ...
转至【http://pengjiaheng.spaces.live.com/blog/cns!2DAA368B386E6AEA!770.entry】
一、相关概念
基本回收算法
引用计数(Reference Counting)
比较古老的回收算法。原理是此对象有一个引用,即增加一个计数,删除一个引用则减少一个计数。垃圾 ...
其实很简单,但是没有用过,也就没有去研究。今天被别人问起,就看了一下自动生成的Example类的代码里怎么实现in的。
只需要把where条件的in后面加上如下的代码就可以了
<iterate property="key" open="(" close=")" conjunction="," >
#key[]#
</iterate>
这段代码一看也就明白了,就是遍历key属性里的值,分别以"("开头,")"结尾,并以逗号分隔。
据说在GAE里实现的jdbc,暂时记录一下,有时间再研究研究
http://www.jiql.org/
1.此刻打盹,你将做梦;而此刻学习,你将圆梦。
2.我荒废的今日,正是昨日殒身之人祈求的明日。
3.觉得为时已晚的时候,恰恰是最早的时候。
4.勿将今日之事拖到明日。
5.学习时的苦痛是暂时的,未学到 ...
I really hate when my source files are bloated with lines and lines of code that do not implement any business logic at all. One of the sources of this was certainly code related to caching. Using Google’s Memcache service with the low-level API or via JCache facade is not complicated but it really w ...
开始学习Google App Engine了, 在学习过程中发现一个问题,就是使用JDO的POJO没有被自动增强。这个在Google的文档中已经很清楚的描述清楚了,如果使用Google提供的Eclipse插件,他会在编译的时候自动增强JDO的POJO,但是我在做的时候怎么都没有被增强。后来发现其实每次编译的时候他都有一个DataNucleus Enhancer控制台,如果增强有错误,就会讲错误记录到类似C:\Windows\Temp\enhance6600965143439591145.log的日志文件,打开文件才发现重复引用了下面这些jar:
appengine-api-1.0-sdk-1.3 ...
在学习Maven的时候,看到http://www.sonatype.com/books/maven-book/reference_zh/ch07s06.html#example_pom-for-simple-webapp
运行mvn hibernate3:hbm2ddl报错,到处上网查,发现需要修改pom.xml,在hibernate3-maven-plugin里加一个<jdk5>true</jdk5>就可以了
修改之后的plugin配置如下:
<plugin>
<groupId>org.codehaus.mojo</group ...
因为公司里需要代理才能上网,不能直接上远程的Repository,我自己搭建的私服还不怎么会用,所以特别想了解如何通过代理访问远程Repository。
在Better Builds with Maven上看到的,留下做个记录
在<your-home-directory>/.m2/settings.xml文件里加上
<settings>
<proxies>
<proxy>
<active>true</active>
<protocol ...
-showlocation -vm "%JAVA_HOME%\bin\javaw.exe" -vmargs -Xms128M -Xmx512M -XX:MaxPermSize=256M
There is a simple query cache in Rails. When you use find method to query and the query cache is active, the result will be save in a hash with the sql key. But it literally keys cached model instances on the SQL that was used to pull them out of the database, it can't connect multiple find invocatio ...
- 2008-11-27 17:24
- 浏览 1196
- 评论(0)