个人简介

Echo Blog


江湖无名 安心练剑
  • Ruby-01-base
    Ruby Ruby 是一门开源的动态编程语言,注重简洁和效率。Ruby 的句法优雅,读起来自然,写起来舒适。 Install 本机环境为Mac。安装方式: $ brew install ruby 原来不知何时已经安装了。虽然版本比较老了。 houbinbindeMacBook-Pro:~ houbinbin$ ruby --version ruby 2.0.0p645 (2...
    2017-04-14 16:18:43 | Lang
  • Ruby-00-overview
    Ruby Ruby 是一门开源的动态编程语言,注重简洁和效率。 Ruby 的句法优雅,读起来自然,写起来舒适。 为什么学习 ruby 许多Ruby开发人员发现使用Ruby很有趣,在学习编码时,有趣是一个很好的动力。 Ruby是一种非常高级的语言,这意味着Ruby抽象了(即处理你)大多数复杂的机器细节。 因此,您可以使用较少的代码行快速构建一些东西。 Ruby通过Ruby on ...
    2017-04-14 16:18:43 | Lang
  • Spring.NET-06-test
    Test A thorough treatment of testing in the enterprise is beyond the scope of this chapter; rather, the focus here is on the value add that the adoption of the IoC principle can bring to unit tes...
    2017-04-09 14:52:40 | Spring
  • Spring.NET-05-aop
    AOP Aspect-Oriented Programming (AOP) complements OOP by providing another way of thinking about program structure. AOP is used in Spring.NET: To provide declarative enterprise services, espe...
    2017-04-09 14:48:05 | Spring
  • IbatisNet-01-hello world
    IbatisNet 写在前面 原来尝试了mybatisNet,实际使用无奈的发现语法和 ibatis.Net 是一样的。 就选择了 iBATIS.NET。 这个相对资料会多一些,而且有官方文档。 简介 The iBATIS DataMapper framework makes it easier to use a database with a Java or ....
    2017-04-09 14:22:22 | DotNet
  • Spring.NET-02-DI
    DI Dependency injection (DI) is a process whereby objects define their dependencies, that is, the other objects they work with, only through constructor arguments and properties that are set on ...
    2017-04-09 14:13:58 | Spring
  • Spring.NET-01-hello world
    Spring.NET Spring.NET is an open source application framework that makes building enterprise .NET applications easier. Modules Install 先尝试最基础的。spring.core,nuget直接搜索引入即可。现在为2.0.1版本。 IOC ...
    2017-04-08 12:52:59 | Spring
  • Mybatis.NET
    Mybatis.NET MyBatis is a data mapping tool. It maps columns of a database query including stored procedure to properties of a business object. One definition of mapper is “an object that sets up...
    2017-04-08 08:03:49 | ORM