Grails
Xiao_Peter
nothing special haha
展开
-
grails环境配置
Grails是一个类似于Rails的Web框架,构建在Spring,Hibernate等框架的基础上,可以与Java平台无缝集成。相对RoR来说,Java开发人员更容易上手。 Grails提供了完整的Web Application开发平台,内置了Jetty Server,并提供了强大的功能, 如简单的对象关系映射(ORM),自动重新加载应用程序,为CRUD(新增,查询,修改,删除)操作提供代码自转载 2014-03-05 16:07:31 · 640 阅读 · 0 评论 -
关于闭包的一些使用
@闭包的curry方法返回当前一个闭包的克隆品,这个克隆品已经绑定了一个或者多个给定的参数参数的绑定时从左至右的如:def adder = { x,y -> return x+y }def addOne = adder.curry(1)assert addOne(5) == 6@闭包实现了isCase方法,这样闭包可以在grep和switch中作为分类器使用如:assert [1,2,3].gre转载 2014-03-05 16:07:42 · 473 阅读 · 0 评论 -
断言assert
@断言可以包含一个跟踪信息如:input = new File('No such file')assert input.exists() , "cannot find '$input.name'"assert input.canRead() , "cannot read '$input.canonicalPath'"println input.txt@在groovy中断言总是被执行转载 2014-03-05 16:07:47 · 431 阅读 · 0 评论 -
groovy的控制循环结构
@条件执行结构 @for循环转载 2014-03-05 16:07:45 · 721 阅读 · 0 评论 -
groovybeans
转载 2014-03-05 16:07:36 · 444 阅读 · 0 评论 -
glassfish3.1.2 install
install glassfish3.1.2 using silent modeSilent mode is a non-interactive installation based on user-defined parameters captured in an answer file.//////////////////////////////////////////////////////转载 2014-03-05 16:05:51 · 581 阅读 · 0 评论 -
ubuntu下安装groovy
1下载Groovy安装包,使用当前稳定的1.8.6版本 wget http://dist.groovy.codehaus.org/distributions/groovy-binary-1.8.6.zip 2 解压缩 unzip groovy-binary-1.8.6.zip 3 将解压后的目录移动至/usr/lib sudo mv groovy-1.8.6 /usr/lib/转载 2014-03-05 16:07:38 · 1398 阅读 · 0 评论 -
grails 入门小知识
@grails 的url格式http://localhost:8080/hello/hello/worldhttp://域名:端口号/上下文路径/控制器名/操作名 @当端口被占用的时候 使用命令 sudo netstat -anp|grep 8080 查找到占用程序的id然后 kill -9 id@domain1. hibernate提倡使用POJO----一些不继承任何特定类且不实现任何接口的j转载 2014-03-05 16:07:49 · 490 阅读 · 0 评论 -
grails之访问request属性
转载 2014-03-05 16:07:51 · 870 阅读 · 0 评论 -
闭包使用的三种形式
闭包调用的两种形式def adder = { x,y -> return x+y }assert adder(4,3) == 7assert adder.call(2,6) ==8转载 2014-03-05 16:07:40 · 759 阅读 · 0 评论