E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
recipes
Groovy_and_Grails_
Recipes
之Groovy部分
感觉这本书说的东西也不少,可是都不是很深入,可以了解一下,以后找重点再看过,有点像CookBook Map的类型中 可以直接使用Object.key来访问 string.eachMatch(pattern){match-> mathehed+=match[0]} ...方便的整合了正则 as 用于进行类型转化, in用于判断该对象是否属于一种类型 可以通过修改指定
friendsys
·
2009-03-31 08:00
数据结构
sql
mysql
grails
groovy
使用 Spring 更好地处理 Struts 动作
Struts
Recipes
的合著者 George Franciscus 将介绍另一个重大的 Struts 整合窍门 —— 这次是将 Struts 应用程序导入
programer
·
2009-03-18 18:00
spring
AOP
框架
struts
企业应用
Monte Carlo Method for simulation
http://finance-old.bi.no/~bernt/gcc_prog/
recipes
/
recipes
/node12.htmlhttp://en.wikipedia.org/wiki/Monte_Carlo_methods_in_finance
cs870101
·
2009-03-18 14:00
methods
学习ruby on rails的视频教程和电子书下载
http://www.railscasts.com/ 书籍方面,个人推荐Agile Web Development with Rails(中文版翻译得不错,电子书是第2版)和Rails
Recipes
cab0605
·
2009-01-08 14:00
编程
Web
Ajax
Ruby
Rails
ruby on rails 学习资料汇总
书籍&pdf: Rails
Recipes
(Version: 2006-4-1 english) 待续...
aideehorn
·
2008-12-10 16:00
jquery
capistrano
git
Ruby
Rails
三种整合Struts应用程序与Spring 的方式(spring+struts)
Struts 动作三种整合 Struts 应用程序与 Spring 的方式 级别: 中级George Franciscus , 负责人, Nexcel2005 年 11 月 03 日 Struts
Recipes
it_man
·
2008-12-04 15:00
spring
框架
bean
struts
IOC
encoding
使用Spring 更好地处理Struts动作----三种整合Struts与Spring的方式
Struts
Recipes
的合著者 George Franciscus 将介绍另一个重大的 Struts 整合窍门 —— 这次是将 Struts 应用程序导入 Spring 框架。
literfly
·
2008-10-23 14:00
spring
AOP
框架
struts
企业应用
Eclipse对JDK说“不”了
最近开始翻译Spring
Recipes
了,既然是讲Spring的书自然里面少不了范例代码,当然翻译时还是要自己跑一跑里面的代码比较放心。
DigitalSonic
·
2008-09-30 21:00
eclipse
spring
jvm
jdk
osgi
Struts 与 Velocity 的集成(http://www-128.ibm.com/deve)
用五个步骤轻松替代 JSP (转) George Franciscus , 首席顾问, Nexcel 2005 年 10 月 17 日 Struts
Recipes
的合著者 George Franciscus
aideqianfang
·
2008-09-17 11:00
jsp
搜索引擎
struts
velocity
IBM
再谈正则表达式编译
http://www.codeproject.com/KB/
recipes
/regexlibbuilder.aspx但该工具有一个美中不足,就是无法指定强名称文件,以及其他的一些属性。
·
2008-08-01 10:00
正则表达式
python中获取按键(跨平台)
#整理自http://code.activestate.com/
recipes
/134892/ #写脚本时用 class _Getch: """Gets
zuroc
·
2008-07-28 15:00
C++
c
python
unix
脚本
《Rails
Recipes
》Part II Database
Recipes
知识点总结 六
Make Dumb Data Smart with composed_of() 通过composed_of() 使呆板的数据变聪明 基本语法如下 class SomeModel < ActiveRecord::Base composed_of :some_attribute, #要添加功能的SomeModel的属性名, #这个属性可以随便起个名不一定是Som
tes
·
2008-07-24 13:00
Ruby
ActiveRecord
Rails
《Rails
Recipes
》Part II Database
Recipes
知识点总结 五
Dynamically Configure Your Database 动态的设置你的数据库 有时候不同的操作系统连接数据库的套接字段设置是不同的 如果不同的服务器操作系统不同就需要更改database.yml比较麻烦 但是在database.yml做如下修改就可以避免这个麻烦 development: adapter: mysql database: DynamicDataba
tes
·
2008-07-24 13:00
mysql
socket
Rails
《Rails
Recipes
》Part II Database
Recipes
知识点总结 四
Add Behavior to Active Record Associations 先贴上数据迁移代码 class AddStudentsTables < ActiveRecord::Migration def self.up create_table :students do |t| t.column :name, :string t.column :graduati
tes
·
2008-07-24 12:00
Ruby
UP
ActiveRecord
Rails
Struts 与 Velocity 的集成
级别: 中级 George Franciscus (
[email protected]
), 首席顾问, Nexcel Struts
Recipes
sanzang
·
2008-07-24 10:00
编程
应用服务器
jsp
struts
velocity
《Rails
Recipes
》Part II Database
Recipes
知识点总结 三
Polymorphic Associations—has_many :whatevers Problem 《Rails cookbook》中有一节和这一章类似 通过表中特定的属性区别不同模型的数据实现多态 数据库代码 class AddPeopleCompanyAndAddressTables < ActiveRecord::Migration def self.up c
tes
·
2008-07-23 21:00
Hibernate
Ruby
UP
Rails
ActiveRecord
《Rails
Recipes
》Part II Database
Recipes
知识点总结 二
Many-to-Many Relationships with Extra Data 带有数据的多对多关系 一般多对多关系都带有 一个存储关系的表 这表一般用处比较单一 但是有时也需要在这个表中添加除关系以外的数据 下面有个订杂志的例子 一般情况下 def self.up create_table :magazines do |t| t.column :title, :strin
tes
·
2008-07-23 20:00
Ruby
UP
Rails
ActiveRecord
《Rails
Recipes
》Part II Database
Recipes
知识点总结 一
Recipe17DRYUpYourDatabaseConfiguration一般设置数据库database.yml: development: adapter:mysql database:DRYUpYourDatabaseConfig_development username:root password: socket:/tmp/mysql.sock test: adap
tes
·
2008-07-23 19:00
mysql
socket
Ruby
UP
Rails
In-Place-editing 下拉列表
rails自带In-Place文本编辑,但是我一直想弄一个In-Place的下拉列表前几天在看《Rails
Recipes
》的时候看见有这么一篇文章,但是试过之后发现在ie下不能正常显示 注释上说是innerhtml
tes
·
2008-07-22 12:00
JavaScript
Ajax
IE
prototype
Rails
Guice1.0食谱
学习Guice的时候翻译的,可以在下面的地址获取最新的英文原文: http://code.google.com/p/google-guice/wiki/Guice10
Recipes
Guice10
Recipes
saharabear
·
2008-07-18 12:00
工作
Google
如何制作土豆泥
PowerShell肯定不能做土豆泥,我们除了学习技术,更应该热爱生活,我们也许不会做菜,但至少我们应该了解相关的信息,最差也是点菜的时候,能用地道的英文告诉别人你要吃什么.http://www.elise.com/
recipes
PowerShell
·
2008-05-25 16:00
生活
工具
powershell
Live Search [Rails
Recipes
]
下面开始Coding 建立我们的数据库 defself.up create_table"
recipes
"do|t| t.column"name",:string t.column"region"
magixyu
·
2008-04-22 19:00
JavaScript
Ruby
UP
Rails
Live Preview [Rails
Recipes
]
用prototype完成用户预览功能。 在layout里面加载prototype.js <%= include_javascript_tag "prototype" %> 用一个日记的例子,定义一个model class Entry, 在里面定义title, body. class Entry attr_accessor :
magixyu
·
2008-04-21 21:00
JavaScript
prototype
Ruby
Rails
Making Your Own Javascript Helper [Rails
Recipes
]
写自己的magical one-liners for Javascript. 继续上一章的in_place_editor, 完成一个in_place_select_editor. 在rails里,InPlaceEditor是在 public/javascripts/control.js里面定义的,单击click会触发enterEditMode方法,然后由createForm()和creat
magixyu
·
2008-04-21 19:00
JavaScript
Ajax
prototype
Ruby
Rails
In-Place Form Editing [Rails
Recipes
]
在rails里使用script.acluo.us的 InPlaceEditor control/accompanying helpers使In-Place From Editing更简单。 做一个脚手架,建好数据库。 rails 2里面需要安装in_place_editing plugin ruby script/plugin install in_place_editing
magixyu
·
2008-04-21 18:00
JavaScript
Ajax
css
Ruby
Rails
使用 Spring 更好地处理 Struts 动作
转至 http://www.ibm.com/developerworks/cn/java/j-sr2.html#resources Struts
Recipes
的合著者 George Franciscus
zhangzuanqian
·
2008-04-17 14:00
spring
AOP
框架
struts
企业应用
Flex AIR 相关书籍
这里收集了大部分的Flex/AIR书籍http://flex.org/books/ 国外Flex3的书也有不少了Flex3Cookbook:Code-
Recipes
,TipsandTricksforRIADevelopershttp
wangcheng
·
2008-04-10 10:00
Flex
AIR
Flex AIR 相关书籍
这里收集了大部分的Flex/AIR书籍http://flex.org/books/ 国外Flex3的书也有不少了Flex3Cookbook:Code-
Recipes
,TipsandTricksforRIADevelopershttp
wangcheng
·
2008-04-10 10:00
Flex
AIR
rails 电子书下载
http://www.51cnnet.net/ebook/3-ajax-on-rails http://www.51cnnet.net/ebook/8-rails-
recipes
http:
nathan.wu
·
2008-03-13 21:00
rails 电子书下载
OpenEmbedd学习笔记[原创]
http://www.openembedded.info/wiki/Bitbake_
recipes
一个不错的oeBlogUnabletoopenconf/bitbake.conf出现这个信息的原因是由于忘记设
3444542
·
2008-02-27 15:00
#openembedded
C++
Recipes
自己实现输出重定向
输出重定向在命令行中,可以用>和>>等实现。但是有时候我们希望通过编程来实现,以下是一个最简单的C++版本。#include #include #include int main( )...{ using namespace std; ofstream file( "rdbuf.txt" ); streambuf *x = cout.rdbuf( file.rdbuf( ) );
xlvector
·
2008-01-15 13:00
ios
编程
C++
iostream
Grails1.0就绪,只欠Groovy东风
Grails的新年新气象,在此文中,Graeme描述了新近Groovy/Grails所发生的事情,其中有两点,我比较关注: Groovy的两本新书已经面世:Groovy秘笈(Groovy
Recipes
agile_boy
·
2008-01-09 10:00
html
编程
grails
groovy
Equals()方法的理解
摘自 《Junit
Recipes
》 令人震惊的是,虽然一个强大的面向对象的设计要求恰当的实现equals()方法,许多程序员却没有正确地做到这一点。
canofy
·
2007-12-13 11:00
JUnit
Equals()方法的理解
摘自 《Junit
Recipes
》 令人震惊的是,虽然一个强大的面向对象的设计要求恰当的实现equals()方法,许多程序员却没有正确地做到这一点。
canofy
·
2007-12-13 11:00
JUnit
JUnit
Recipes
junitrecipes先以topic的形式探讨junit或单元测试中的基本问题:特定元素的测试方法,如何组织测试代码,如何管理testsuite,测试数据从哪里来等。这部分内容比《junitinaction》好,后者没有这样的一般性问题讨论。
wapysun
·
2007-10-08 22:00
JUnit
Capistrano开发日记(1)
找了很久,觉得应该引用capistrano/
recipes
/deploy.rb了,却发现
optman
·
2007-09-05 19:00
C++
linux
shell
capistrano
Ruby
工具
看完几本Ruby、RoR书籍后的感受
顺序看了《Agile Web Development With Rails》、《Rails
Recipes
》和《Ruby for Rails》,我看的都是最新的英文版的,说说对这三本书的感受。
hideto
·
2007-06-14 16:00
Hibernate
Web
Ruby
Rails
Acegi
看完几本Ruby、RoR书籍后的感受
顺序看了《Agile Web Development With Rails》、《Rails
Recipes
》和《Ruby for Rails》,我看的都是最新的英文版的,说说对这三本书的感受。
hideto
·
2007-06-14 16:00
Hibernate
Web
Ruby
Rails
Acegi
看完几本Ruby、RoR书籍后的感受
顺序看了《Agile Web Development With Rails》、《Rails
Recipes
》和《Ruby for Rails》,我看的都是最新的英文版的,说说对这三本书的感受。
hideto
·
2007-06-14 16:00
Hibernate
Web
Ruby
Rails
Acegi
每天一剂Rails良药之account_location
《Rails
Recipes
》已经告一段落,今天开始一起学习Rails插件 首先安装我们今天要看的account_location插件: ruby script/plugin install
hideto
·
2007-05-28 02:00
c
windows
lighttpd
Ruby
Rails
每天一剂Rails良药之account_location
《Rails
Recipes
》已经告一段落,今天开始一起学习Rails插件 首先安装我们今天要看的account_location插件: ruby script/plugin install
hideto
·
2007-05-28 02:00
c
windows
lighttpd
Ruby
Rails
每天一剂Rails良药之account_location
《Rails
Recipes
》已经告一段落,今天开始一起学习Rails插件 首先安装我们今天要看的account_location插件: ruby script/plugin install
hideto
·
2007-05-28 02:00
c
windows
lighttpd
Ruby
Rails
每天一剂Rails良药之Syndicate Your Site With RSS
feed_controller.rb: class FeedController < ApplicationController session \:off def
recipes
hideto
·
2007-05-21 16:00
xml
cgi
Rails
每天一剂Rails良药之Syndicate Your Site With RSS
feed_controller.rb: class FeedController < ApplicationController session \:off def
recipes
hideto
·
2007-05-21 16:00
xml
cgi
Rails
整合 Struts 和 Spring
Struts
Recipes
的合著者 George Franciscus 将介绍另一个重大的 Struts 整合窍门 ?? 这次是将 Struts 应用程序导入 Spring 框架。
fluagen
·
2007-04-30 17:58
spring
struts
职场
休闲
整合 Struts 和 Spring
Struts
Recipes
的合著者 George Franciscus 将介绍另一个重大的 Struts 整合窍门 ?? 这次是将 Struts 应用程序导入 Spring 框架。
fluagen
·
2007-04-30 17:58
spring
struts
职场
休闲
每天一剂Rails良药之Smart Pluralization
Rails就提供了一个称为Inflector的工具来计算该逻辑,并且ActionView有一个wrapper方法来处理常见的复数形式,如: There are <%= pluralize @
recipes
.size
hideto
·
2007-04-23 19:00
Rails
每天一剂Rails良药之Smart Pluralization
Rails就提供了一个称为Inflector的工具来计算该逻辑,并且ActionView有一个wrapper方法来处理常见的复数形式,如: There are <%= pluralize @
recipes
.size
hideto
·
2007-04-23 19:00
Rails
每天一剂Rails良药之Smart Pluralization
Rails就提供了一个称为Inflector的工具来计算该逻辑,并且ActionView有一个wrapper方法来处理常见的复数形式,如: There are <%= pluralize @
recipes
.size
hideto
·
2007-04-23 19:00
Rails
每天一剂Rails良药之Live Search
Recipe的Migration class AddRecipes < ActiveRecord::Migration def self.up create_table :
recipes
hideto
·
2007-04-23 17:00
JavaScript
html
UP
Rails
ActiveRecord
上一页
10
11
12
13
14
15
16
17
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他