Jolt Awards: The Best Books

  Jolt大奖素有“软件业界的奥斯卡”之美誉,共设通用类图书、技术类图书、语言和开发环境、框架库和组件、开发者网站等十余个分类,每个分类设有一个“震撼奖”(Jolt Award)和三个“生产力奖”(Productivity Award)。一项技术产品只有在获得了Jolt奖之后才能真正成为行业的主流,一本技术书籍只有在获得了Jolt奖之后才能真正奠定经典的地位。赞助商Jolt可乐的广告词是“震撼全世界”,Jolt奖就让我们看到,是谁在震撼着我们今天的世界。虽然Jolt并不起决定作用,但代表了某种技术趋势与潮流。

2014 Jolt Awards: The Best Books

Jolt Award(震撼奖):

Jolt Productivity Award(生产力奖):

Jolt Finalist(入围):

2013 Jolt Awards: The Best Books

Jolt Award(震撼奖):

  • Lean UX (精益设计 : 设计团队如何改善用户体验)

Jolt Productivity Award(生产力奖):

Jolt Finalist(入围):

2012 Jolt Awards: The Best Books

Jolt Award(震撼奖):

Jolt Productivity Award(生产力奖):

Jolt Finalist(入围):

2011 Jolt Awards: The Best Books

Jolt Award(震撼奖):

  • Continuous Delivery: Reliable Software Releases through Build, Test, and Deployment Automation, by Jez Humble and David Farley (持续交付:发布可靠软件的系统方法)

Jolt Productivity Award(生产力奖):

  • Mining the Social Web: Analyzing Data from Facebook, Twitter, LinkedIn, and Other Social Media Sites, by Matthew A. Russell
  • Seven Languages in Seven Weeks: A Pragmatic Guide to Learning Programming Languages, by Bruce Tate

Jolt Finalist(入围):

  • The Joy of Clojure: Thinking the Clojure Way, by Michael Fogus and Chris Houser
  • The Art of Computer Programming, Volume 4A: Combinatorial Algorithms, Part 1, by Donald Knuth
  • Domain-Specific Languages by Martin Fowler with Rebecca Parsons

2010 Jolt Awards: The Best Books

Jolt Award(震撼奖):

  • Masterminds of Programming: Conversations with the Creators of Major Programming Languages, by Federico Biancuzzi and Shane Warden

Jolt Productivity Award(生产力奖):

  • Hello World! Computer Programming for Kids and Other Beginners, by Warren D. Sande and Carter Sande

Jolt Finalist(入围):

  • SDLC 3.0: Beyond a Tacit Understanding of Agile, by Mark Kennaley

 

【参考文献】Jolt官网:http://www.drdobbs.com

转载于:https://www.cnblogs.com/tuty/p/5404210.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要在 Spring Boot 中整合 Jolt,你可以按照以下步骤进行操作: 1. 添加依赖:在你的 Spring Boot 项目的 pom.xml 文件中,添加 Jolt 的依赖。你可以在 Maven 中央仓库中找到最新的 Jolt 依赖版本。例如: ```xml <dependency> <groupId>com.bazaarvoice.jolt</groupId> <artifactId>jolt</artifactId> <version>0.4.0</version> </dependency> ``` 2. 创建 Jolt 转换规则:在你的项目中创建一个 JSON 文件,定义 Jolt 转换规则。例如,创建一个名为 `jolt-spec.json` 的文件,内容如下: ```json [ { "operation": "shift", "spec": { "name": "firstName", "age": "age" } } ] ``` 这个规则将把输入 JSON 中的 "name" 字段映射到输出 JSON 的 "firstName" 字段,将 "age" 字段映射到输出 JSON 的 "age" 字段。 3. 创建 Jolt 转换类:在你的 Spring Boot 项目中创建一个类,用于加载和应用 Jolt 转换规则。例如,创建一个名为 `JoltTransformer.java` 的类: ```java import com.bazaarvoice.jolt.Chainr; import com.bazaarvoice.jolt.JsonUtils; import java.util.List; public class JoltTransformer { private Chainr chainr; public JoltTransformer() { List<Object> specs = JsonUtils.classpathToList("/jolt-spec.json"); chainr = Chainr.fromSpec(specs); } public Object transform(Object input) { return chainr.transform(input); } } ``` 这个类加载了之前定义的 Jolt 转换规则,并提供了一个 `transform` 方法用于应用规则。 4. 使用 Jolt 转换:在你的 Spring Boot 项目中,使用 JoltTransformer 类来进行 JSON 数据转换。例如,创建一个名为 `JoltController.java` 的控制器类: ```java import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RestController; @RestController public class JoltController { private JoltTransformer joltTransformer; public JoltController(JoltTransformer joltTransformer) { this.joltTransformer = joltTransformer; } @PostMapping("/transform") public Object transformJson(@RequestBody Object input) { return joltTransformer.transform(input); } } ``` 这个控制器类使用了 JoltTransformer 类进行 JSON 数据转换。当 POST 请求发送到 "/transform" 路径时,它会将请求体中的 JSON 数据应用 Jolt 转换规则,并返回转换后的结果。 5. 运行应用程序:启动你的 Spring Boot 应用程序,并访问 "/transform" 路径进行测试。你可以通过发送 JSON 数据的 POST 请求来测试转换功能。 以上是整合 Spring Boot 和 Jolt 的基本步骤,你可以根据自己的需求进行进一步的扩展和定制。希望对你有所帮助!

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值