官方网站:http://jodd.org/

下载地址:http://jodd.org/download/index.html

Jodd=tools + ioc + mvc + db + aop + tx + html < 1.3M

Jodd是一个普通开源Java包。你可以把Jodd想象成Java的"瑞士军刀",不仅小,锋利而且包含许多便利的功能。

Jodd 提供的功能有
1.提供操作Java bean,
2.可以从各种数据源加载Bean,
3.简化JDBC的接连与代码,
4.剖析SQL查询,
5.处理时间与日期,
6.操作与格式化String,
7.搜索本地硬盘上的文件,
8.帮助处理Servlet请求等。
9.除此之外还包含一个很小,但实用的基于JSP的MVC框架。

(特别说明:担心自己翻译得不好,就不再翻译了)

Jodd Tool

1.BeanUtil:Fastest bean library, bundled with type introspection and type conversion tools and some unique features.

2.Props:Experience super properties replacement, featuring: UTF8, sections, profiles, macros and more.

3.Utilities:Jodd is packed with many carefully selected utilities; obsessively optimized for performances and to be easy to use.

4.HTTP:Tiny and raw HTTP client, helps talking to servers.

5.JDateTime:Elegant usage and astronomical precision in single time-manipulation class.

6.Email:Sending and receiving emails for busy developers.

7.Servlet:Better standard tag library, jsp functions, support for file download, smart forms….

Jodd Frameworks

1.Madvoc:Elegant web MVC framework that uses CoC and annotations in a pragmatic way to simplify web application development.

2.Proxetta:The fastest proxy creator with unique approach for defying pointcuts and advices.

3.Paramo:Access method and constructor parameter names with ease.

4.VTor:Focused validation framework for any Java object.

5.Decora: Decoration framework for pages based on templates

6.HtmlStapler:Transparently staple many javascript and css resources into single requests.

7.Petite:Slick and lightweight DI container that uses annotations and supports sufficient most of features offered by other containers.

8.Db&Dboom:Efficient and thin layers that simplifies writing of database code significantly.

9.JTX:Manage transactions with this small stand-alone tx manager.

10.Lagarto:Fast and versatile all purpose HTML parser.

11.Jerry:jQuery-friendly Java parser with CSS selectors support.

Jodd Labs

Jodd Joy:Start coding your web applications right away, using best Jodd practices integrated into thin application layer.

原文参见:http://fansunion.cn/articles/2246

提高生产力:开源Java工具包Jodd(Java的”瑞士军刀”)

[置顶] 提高生产力:开源Java工具包Jodd(Java的”瑞士军刀”)的更多相关文章

  1. 提高生产力:开源Java工具包Jodd(Java的”瑞士军刀”)

    官方网站:http://jodd.org/ 下载地址:http://jodd.org/download/index.html Jodd=tools + ioc + mvc + db + aop + t ...

  2. [置顶] 提高生产力:Web开发基础平台WebCommon的设计和实现

    Web开发中,存在着各种各样的重复性的工作.为了提高开发效率,不在当码农,我在思考和实践如何搭建一个Web开发的基础平台. Web开发基础平台的目标和功能 1.提供一套基础的开发环境,整合了常用的框架 ...

  3. [置顶] quartznet任务调度和消息调度(JAVA与C#版对比)

    quartznet任务调度和消息调度 1.  作用 自动执行任务. 2.  下载地址 NET版本 JAVA版本 1下载 http://quartznet.sourceforge.net/downloa ...

  4. [置顶] 智能家居开源项目 The open Home Automation Bus (openHAB)

    ================================================================================ 2014-05-19 论文的事情太多, ...

  5. [置顶] 如何运行用记事本写的java程序

               今天用记事本写了一个java程序,测试能运行,现在把它分解成几个步骤,利于大家理解:           1. 新建一个记事本,后缀名是  .java  :然后在里面写一段jav ...

  6. [置顶] oracle 数据库表中转换成java代码

    --数据库中字段java代码 select col.TABLE_NAME,replace(initcap(col.TABLE_NAME),'_', '')   , 'private '||decode ...

  7. 提高生产力:Web开发基础平台WebCommon的设计和实现

    Web开发中,存在着各种各样的重复性的工作.为了提高开发效率,不在当码农,我在思考和实践如何搭建一个Web开发的基础平台. Web开发基础平台的目标和功能 1.提供一套基础的开发环境,整合了常用的框架 ...

  8. Neo4j图数据库管理系统开发笔记之一:Neo4j Java 工具包

    1 应用开发概述 基于数据传输效率以及接口自定义等特殊性需求,我们暂时放弃使用Neo4j服务器版本,而是在Neo4j嵌入式版本的基础上进行一些封装性的开发.封装的重点,是解决Neo4j嵌入式版本Emb ...

  9. java开源工具包-Jodd框架

    java开源工具包-Jodd框架 /    2019-07-24 Jodd是一个Java工具包和微型框架,Jodd 工具包含一些实用的工具类和小型框架,增强了 JDK 提供很多强大的功能,可以帮助实现 ...

随机推荐

  1. ToString函数用法

    // C 货币    2.5.ToString("C"); // ¥2.50    // D 10进制数    25.ToString("D5"); // 25 ...

  2. 一个简单的webservice调用

    我们先创建一个简单空web应用程序 然后添加新建项目 //我们创建一个peson对象,产生数据标识返回 using System; using System.Collections.Generic; ...

  3. keil对51单片机变量和函数的编译处理

    (1)初始值不是0的全局变量 在程序调到main()函数执行前,除了要进行内存清零.初始化堆栈外,还需要将全局变量的初始值加载到RAM的指定区域(编译过程中为全局变量分配的空间). (2)未初始化的局 ...

  4. main函数的参数

    一.main的参数 形式:int main(int argc,char *argv[]) 参数argc.argv可以被看做是main函数的形参,argc是整型变量,代表的是参数的个数:argv是指向字 ...

  5. FutureTask源码解读

    import java.util.concurrent.Callable; import java.util.concurrent.ExecutionException; import java.ut ...

  6. 利用Anaconda安装python后,如何安装opencv-python

    利用Anaconda安装python后,想要安装opencv-python,但发现利用opencv-python的官方教程,没法实现opencv的安装 还好看到了另外一篇博客的方法,试一下,果然凑效 ...

  7. BZOJ 1831 逆序对

    Description 小可可和小卡卡想到Y岛上旅游,但是他们不知道Y岛有多远.好在,他们找到一本古老的书,上面是这样说的: 下面是N个正整数,每个都在\(1 \sim K\)之间.如果有两个数\(A ...

  8. android ADT Bundle for Mac下载地址

    直接下载解压就能用 http://developer.android.com/sdk/index.html

  9. Android 使用HttpClient方式提交POST请求

    final String username = usernameEditText.getText().toString().trim(); final String password = passwr ...

  10. Storm on Yarn 安装配置

    1.背景知识 在不修改Storm任何源代码的情况下,让Storm运行在YARN上,最简单的实现方法是将Storm的各个服务组件(包括Nimbus和Supervisor),作为单独的任务运行在YARN上 ...