- 浏览: 113295 次
- 性别:
- 来自: 济南
最新评论
-
anttu:
groovy -
MeltingSnower:
基于ext的?
grails +zkoss -
mymelon:
代码能不能放出来看看啊。
grails +zkoss -
dellsoft:
用的csc365kl 写道请问你的控制层是怎么处理的 是用的g ...
grails +zkoss -
csc365kl:
请问你的控制层是怎么处理的 是用的grails的 还是 zk的 ...
grails +zkoss
文章列表
http://wiki.sdn.sap.com/wiki/display/stage/Working+with+Internal+tables+.
- 2009-10-30 11:06
- 浏览 817
- 评论(0)
http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/16354
- 2009-10-22 21:11
- 浏览 535
- 评论(0)
http://www.piragua.com/2009/06/17/grails-p6spy-and-sql-profiler/
在config文件的logj在那个加入
trace "org.hibernate.SQL",
"org.hibernate.type"
log4j = {
// Example of changing the log pattern for the default console
// appender:
//
//appenders {
// ...
- 2009-05-14 15:53
- 浏览 1052
- 评论(0)
使用hibernate 的自定义主键
import org.hibernate.SessionFactory
class PersonController {
SessionFactory sessionFactory
def index = { redirect(action:list,params:params) }
// the delete, save and update actions only accept POST requests
static allowedMethods = [delete:'POST', s ...
import groovy.sql.Sql;
class YourController {
def dataSource ;
.....
def print = {
.....
def sql = new Sql(dataSource);
List lparams = [startDate, endDate];
def query2 = "select * from invoiceh where trx_date between ? and ? ";
...
- 2009-05-09 22:13
- 浏览 1258
- 评论(0)
public class CustomIdSequenceGenerator extends org.hibernate.id.SequenceGenerator{
private DecimalFormat format;
public void configure(Type type, Properties params, Dialect dialect) {
super.configure( type, params, dialect);
String formatPattern = params.getPr ...
- 2009-05-09 20:54
- 浏览 1067
- 评论(0)
grailsflow 具体地址 http://my.jcatalog.com/grailsflow/login
下面说说,grailsflow的流程处理.本人对工作流不熟悉,加之grailsflow文档有限。
只是粗略的看了下 grailsflow 的代码,如发现有错误,请指正留言。
grailsflow 分以下几个方面
1 ...
- 2008-10-30 16:43
- 浏览 2452
- 评论(0)
在把StatusBar放到一个Panel上时,如果这个panel在ViewPort中的South ,需要把 Panel的height 设置成 0 否则在ie7中,会有一个13px的空白。
var statusBar = new Ext.Panel({
// autoHeight: true,
[b] height:0,[/b]
// title: 'StatusBar',
region:'south',
// bodySt ...
- 2008-07-11 11:37
- 浏览 3645
- 评论(0)
GenerateDataabase.groovy
import java.lang.reflect.Method
import com.pansoft.extjs.DbunitDatabaseTemplateGenerator
import java.sql.Connection
import java.sql.DriverManager
/*
* Copyright 2004-2005 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the " ...
- 2008-07-04 17:25
- 浏览 2962
- 评论(6)
用 poi 来导出 excel 文件
import org.codehaus.groovy.grails.commons.*
import org.apache.poi.hssf.usermodel.HSSFWorkbook
import org.apache.poi.hssf.usermodel.HSSFSheet
import org.apache.poi.hssf.usermodel.HSSFRow
import org.apache.poi.hssf.usermodel.HSSFCell
import org.codehaus.groovy.grails.commons. ...
- 2008-07-04 17:21
- 浏览 6546
- 评论(4)
在config.groovy 下面配置
grails.war.resources = {stagingDir ->
copy(todir: "${stagingDir}/WEB-INF/classes/grails-app/yourDir") {
fileset(dir:"grails-app/YourDir")
}
}
- 2008-07-04 17:18
- 浏览 1498
- 评论(0)
在datasource.groovy
password = YourClass.decode(加密后的密码)
提前用YourClass.encode(原始密码)获得加密后的密码
- 2008-07-04 17:16
- 浏览 2461
- 评论(3)
http://www.zorched.net/2008/01/25/build-a-custom-validator-in-grails-with-a-plugin/
- 2008-07-04 17:05
- 浏览 1157
- 评论(0)
原文
http://amorproximi.blogspot.com/2008/07/grails-bootstrapping.html
择录部分,
Ant.property(environment: "env")
grailsHome = Ant.antProject.properties."env.GRAILS_HOME"
includeTargets << new File("${grailsHome}/scripts/Bootstrap.groovy")
target('default': "Wor ...
- 2008-07-04 16:55
- 浏览 996
- 评论(0)