首页 软件开发 代码片段 groovy ( Page 7 )

groovy 77

#Groovy
grails执行sql,调用存储过程

import groovy.sql.Sql class TestService{ def dataSource//注入数据源 def execute(){ def db = new…

2015-12-14 350

#Groovy
时间线计算代码

class DateTimeUtil { static def timeLine = { def subMinute = delegate.upint(Calendar.insta…

2015-12-14 832

#Groovy
连接SQL Server

import java.sql.Connection import java.sql.DriverManager import javax.sql.DataSource impor…

2015-12-14 344

#Groovy
gorm的criteria查询

class User{ String name Account account } class Account{ Double balance } 查询:: User.withCr…

2015-12-14 261

#Groovy
groovy闭包的创建和调用

class A { private int member = 20; private method() { println ("hello"); } def publicMetho…

2015-12-14 167
1 5 6 7