- 博客(8)
- 收藏
- 关注
原创 java内存性能
一、内存溢出类型1、java.lang.OutOfMemoryError: PermGen space JVM管理两种类型的内存,堆和非堆。堆是给开发人员用的上面说的就是,是在JVM启动时创建;非堆是留给JVM自己用的,用来存放类的信息的。它和堆不同,运行期内GC不会释放空间。如果web app用了大量的第三方jar或者应用有太多的class文件而恰好MaxPermSize设置较小,超出了也会导致...
2009-02-26 16:12:35 116
原创 定制Grails的web.xml
Grails的web.xml是自动生成的。如果需要修改web.xml该怎么办?先说一下grails的web.xml的产生过程Grails的web.xml是在Package.groovy的generateWebXml target中生成的。可以在%Grails_Home%/scripts下找到它。其实在运行grails war时也是先走的这一步。在generateWebXml里1.先判断有没...
2008-08-24 01:23:59 141
原创 gsp修改自动生效
gsp在tomcat下部署后,每次更改都需要重新启动tomcat才能生效之前大家也一直在问这个问题,这次终于从Graeme Rocher哪里知道了一个方法设置grails.gsp.enable.reload=true 就可以了,哈哈不过这样会影响性能 原文:http://markmail.org/message/3eqhbi7lg3p5c3gp#query:+page:1+mi...
2008-08-13 23:01:18 291
原创 get a resource from the servletContext or applicat
To get the ApplicationContext, have your service implement ApplicationContextAware and declare an 'applicationContext' field. Then from within your service: def resource = applicationContext.getRe...
2008-08-13 22:52:42 115
原创 在src/groovy中获得domain和service
import org.codehaus.groovy.grails.commons.ApplicationHolder//…def book = ApplicationHolder.application.getClassForName("Book").findByTitle("Groovy in Action") ----------------------------------...
2008-08-13 22:49:34 165
原创 Premature end of file错误
搜索了一下,java里面也发生这种错误,说是xml输出时的问题在grails的jira里面看到,这个问题好像是某些浏览器accept头的问题,1.0.4版本已修正这个bug,1.0.3在config.groovy里面 grails.mime.types = [ html: ['text/html','application/xhtml+xml'],xml: ['text/xml', 'app...
2008-08-13 22:12:34 924
原创 Mail Plugin插件使用的问题
按照http://www.grails.org/Mail+Plugin的说明安装此插件,然后再Config.groovy里加入//grails.mail.default.from="server@yourhost.com"grails { mail { host = "smtp.gmail.com" port = 465 username = "youracount@g...
2008-08-11 19:16:06 1189
原创 webflow不能在wap中使用
主要是事件触发的html控件在wml里<a href="" event="e">可以使用但wml没有submit,只有<go href="" method="post">,不知道webflow里使用submit的原理是什么,网上没搜到...
2008-08-11 19:15:07 110
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人