Spring Data:企业级JAVA的现代数据访问技术(影印版) (美)波拉克 等 下载 网盘 txt 地址 rtf kindle docx pdf

Spring Data:企业级JAVA的现代数据访问技术(影印版) (美)波拉克 等电子书下载地址
- 文件名
- [epub 下载] Spring Data:企业级JAVA的现代数据访问技术(影印版) (美)波拉克 等 epub格式电子书
- [azw3 下载] Spring Data:企业级JAVA的现代数据访问技术(影印版) (美)波拉克 等 azw3格式电子书
- [pdf 下载] Spring Data:企业级JAVA的现代数据访问技术(影印版) (美)波拉克 等 pdf格式电子书
- [txt 下载] Spring Data:企业级JAVA的现代数据访问技术(影印版) (美)波拉克 等 txt格式电子书
- [mobi 下载] Spring Data:企业级JAVA的现代数据访问技术(影印版) (美)波拉克 等 mobi格式电子书
- [word 下载] Spring Data:企业级JAVA的现代数据访问技术(影印版) (美)波拉克 等 word格式电子书
- [kindle 下载] Spring Data:企业级JAVA的现代数据访问技术(影印版) (美)波拉克 等 kindle格式电子书
寄语:
新华书店正版,关注店铺成为会员可享店铺专属优惠,团购客户请咨询在线客服!
内容简介:
在使用关系型数据库搭建Java企业应用时,你可以选择多种数据访问框架。但是在处理大数据的时候呢?波拉编著的《SpringData(企业级Java的现代数据访问技术影印版)》这本包含丰富实践的指南将为你展示SpringData如何使得搭建基于诸如NoSQL和Hadoop这样一些新型数据访问技术的应用变得更加简单。
《SpringData(企业级Java的现代数据访问技术影印版)》通过多个示例项目,你将了解到SpringData如何提供了一个兼容NoSQL特有特性和功能的编程模型,以及它如何帮助你开发基于诸如数据分析、事件流处理和工作流之类用例的Hadoop应用。你也将找到那些SpringData添加到Spring现有JPA和JDBC中的特性,它们用来实现基于RDBMS的数据访问层。
书籍目录:
Foreword
Preface
Part I. Background
1. The Spring Data Project
NoSQL Data Access for Spring Developers
General Themes
The Domain
The Sample Code
Importing the Source Code into Your IDE
2. Repositories: Convenient Data Access Layers
Quick Start
Defining Query Methods
Query Lookup Strategies
Query Derivation
Pagination and Sorting
Defining Repositories
Fine-Tuning Repository Interfaces
Manually Implementing Repository Methods
IDE Integration
IntelliJ IDEA
3. Type-Safe Querying Using Querydsl
Introduction to Querydsl
Generating the Query Metamodel
Build System Integration
Supported Annotation Processors
Querying Stores Using Querydsl
Integration with Spring Data Repositories
Executing Predicates
Manually Implementing Repositories
Part II. Relational Databases
4. JPA Repositories
The Sample Project
The Traditional Approach
Bootstrapping the Sample Code
Using Spring Data Repositories
Transactionality
Repository Querydsl Integration
S. Type-SafeJDBC Programming with Querydsl SQL
The Sample Project and Setup
The HyperSQL Database
The SQL Module of Querydsl
Build System Integration
The Database Schema
The Domain Implementation of the Sample Project
The QueryDslJdbcTemplate
Executing Queries
The Beginning of the Repository Implementation
Querying for a Single Object
The OneToManyResultSetExtractor Abstract Class
The CustomerListExtractor Implementation
The Implementations for the RowMappers
Querying for a List of Objects
Insert, Update, and Delete Operations
Inserting with the SQLInsertClause
Updating with the SQLUpdateClause
Deleting Rows with the SQLDeleteClause
Part III. NoSQL
6. MongoDB:A Document Store
MongoDB in a Nutshell
Setting Up MongoDB
Using the MongoDB Shell
The MongoDB Java Driver
Setting Up the Infrastructure Using the Spring Namespace
The Mapping Subsystem
The Domain Model
Setting Up the Mapping Infrastructure
Indexing
Customizing Conversion
MongoTemplate
Mongo Repositories
Infrastructure Setup
Repositories in Detail
Mongo Querydsl Integration
7. Neo4j: A Graph Database
Graph Databases
Neo4j
Spring Data Neo4j Overview
Modeling the Domain as a Graph
Persisting Domain Objects with Spring Data Neo4j
Neo4jTemplate
Combining Graph and Repository Power
Basic Graph Repository Operations
Derived and Annotated Finder Methods
Advanced Graph Use Cases in the Example Domain
Multiple Roles for a Single Node
Product Categories and Tags as Examples for In-Graph Indexes
Leverage Similar Interests (Collaborative Filtering)
Recommendations
Transactions, Entity Life Cycle, and Fetch Strategies
Advanced Mapping Mode
Working with Neo4j Server
Continuing From Here
8. Redis: A Key/Value Store
Redis in a Nutshell
Setting Up Redis
Using the Redis Shell
Connecting to Redis
Object Conversion
Object Mapping
Atomic Counters
Pub/Sub Functionality
Listening and Responding to Messages
Using Spring's Cache Abstraction with Redis
PartlY. Rapid Application Development
9. Persistence Layers with Spring Roo
A Brief Introduction to Roo
Roo's Persistence Layers
Quick Start
Using Roo from the Command Line
Using Roo with Spring Tool Suite
A Spring Roo JPA Repository Example
Creating the Project
Setting Up JPA Persistence
Creating the Entities
Defining the Repositories
Creating the Web Layer
Running the Example
A Spring Roo MongoDB Repository Example
Creating the Project
Setting Up MongoDB Persistence
Creating the Entities
Defining the Repositories
Creating the Web Layer
Running the Example
10. REST Repository Exporter
The Sample Project
Interacting with the REST Exporter
Accessing Products
Accessing Customers
Accessing Orders
Part V. Big Data
11. Spring forApache Hadoop
Challenges Developing with Hadoop
Hello World
Hello World Revealed
Hello World Using Spring for Apache Hadoop
Scripting HDFS on the JVM
Combining HDFS Scripting and Job Submission
Job Scheduling
Scheduling MapReduce Jobs with a TaskScheduler
Scheduling MapReduce Jobs with Quartz
12. Analyzing Datawith Hadoop
Using Hive
Hello World
Running a Hive Server
Using the Hive Thrift Client
Using the Hive JDBC Client
Apache Logfile Analysis Using Hive
Using Pig
Hello World
Running a PigServer
Controlling Runtime Script Execution
Calling Pig Scripts Inside Spring Integration Data Pipelines
Apache Logfile Analysis Using Pig
Using HBase
Hello World
Using the HBase Java Client
13. Creating Big Data Pipelines with Spring Batch and Spring Integration
Collecting and Loading Data into HDFS
An Introduction to Spring Integration
Copying Logfiles
Event Streams
Event Forwarding
Management
An Introduction to Spring Batch
Processing and Loading Data from a Database
Hadoop Workflows
Spring Batch Support for Hadoop
Wordcount as a Spring Batch Application
Hive and Pig Steps
Exporting Data from HDFS
From HDFS to JDBC
From HDFS to MongoDB
Collecting and Loading Data into Splunk
Part VI. Data Grids
14. GemFire: A Distributed Data Grid
GemFire in a Nutshell
Caches and Regions
How to Get GemFire
Configuring GemFire with the Spring XML Namespace
Cache Configuration
Region Configuration
Cache Client Configuration
Cache Server Configuration
WAN Configuration
Disk Store Configuration
Data Access with GemfireTemplate
Repository Usage
POJO Mapping
Creating a Repository
PDX Serialization
Continuous Query Support
Bibliography
Index
作者介绍:
暂无相关内容,正在全力查找中
出版社信息:
暂无出版社相关信息,正在全力查找中!
书籍摘录:
暂无相关书籍摘录,正在全力查找中!
在线阅读/听书/购买/PDF下载地址:
原文赏析:
暂无原文赏析,正在全力查找中!
其它内容:
暂无其它内容!
网站评分
书籍多样性:8分
书籍信息完全性:4分
网站更新速度:6分
使用便利性:5分
书籍清晰度:7分
书籍格式兼容性:9分
是否包含广告:4分
加载速度:5分
安全性:6分
稳定性:9分
搜索功能:6分
下载便捷性:8分
下载点评
- 目录完整(487+)
- 情节曲折(310+)
- 无缺页(408+)
- 引人入胜(257+)
- 无多页(648+)
- 速度快(533+)
- 无水印(160+)
- 服务好(527+)
- 无颠倒(340+)
下载评价
- 网友 宫***玉:
我说完了。
- 网友 瞿***香:
非常好就是加载有点儿慢。
- 网友 石***致:
挺实用的,给个赞!希望越来越好,一直支持。
- 网友 郗***兰:
网站体验不错
- 网友 游***钰:
用了才知道好用,推荐!太好用了
- 网友 訾***雰:
下载速度很快,我选择的是epub格式
- 网友 孙***美:
加油!支持一下!不错,好用。大家可以去试一下哦
- 网友 堵***洁:
好用,支持
- 网友 芮***枫:
有点意思的网站,赞一个真心好好好 哈哈
- 网友 扈***洁:
还不错啊,挺好
- 网友 家***丝:
好6666666
喜欢"Spring Data:企业级JAVA的现代数据访问技术(影印版) (美)波拉克 等"的人也看了
正版 大脑的故事 00 下载 网盘 txt 地址 rtf kindle docx pdf
孙瑞雪教育三书 孙瑞雪 捕捉儿童敏感期全三册 孙瑞雪育儿三部曲 孙瑞雪的0 6岁敏感期 孙瑞雪 爱和自由 孙瑞雪完整的成长 孙瑞雪全套育儿百科书0-3-6岁父母教育孩子的书儿童教育心理学AJ 下载 网盘 txt 地址 rtf kindle docx pdf
艺术启蒙 懂名画的孩子有气质 下载 网盘 txt 地址 rtf kindle docx pdf
中国音乐学院社会艺术水平考级全国通用教材美声唱法(一级六级) 下载 网盘 txt 地址 rtf kindle docx pdf
做灵魂有香气的女人 下载 网盘 txt 地址 rtf kindle docx pdf
五三 下载 网盘 txt 地址 rtf kindle docx pdf
六年级英语阅读理解训练题小学英语阅读强化100篇人教版6年级上下册通用英语单词短句句型语法课外阅读专项训练书籍同步阶梯练习册 下载 网盘 txt 地址 rtf kindle docx pdf
Protel 99SE电路设计与应用 付华 MBA 下载 网盘 txt 地址 rtf kindle docx pdf
王永庆的球童 下载 网盘 txt 地址 rtf kindle docx pdf
中公教育2020湖北省高校毕业生“三支一扶”选拔招募考试教材:一本通 下载 网盘 txt 地址 rtf kindle docx pdf
- 孩子学钢琴,父母先上课——旅美钢琴家茅为蕙与琴童家长的一席谈(铂金版)扫码即享30分钟作者钢琴演奏专辑 下载 网盘 txt 地址 rtf kindle docx pdf
- 全新正版图书 萨克斯管音乐会经典作品演奏指导 2 王震 上海音乐出版社 9787552315226 点亮音像专营店 下载 网盘 txt 地址 rtf kindle docx pdf
- 精通CAXA2005工程制图 下载 网盘 txt 地址 rtf kindle docx pdf
- 白话精编二十四史(第10卷) 明史(彩图版) 龚书铎【正版保证】 下载 网盘 txt 地址 rtf kindle docx pdf
- 药理学习题集·全国中医药行业高等教育“十四五”规划教材配套用 下载 网盘 txt 地址 rtf kindle docx pdf
- 动物小百科 下载 网盘 txt 地址 rtf kindle docx pdf
- If You Give…系列:Mouse Cookie First Library, A 《要是你给老鼠吃饼干》、《要是你带老鼠去上学》套装(卡板书) ISBN9780061174797 下载 网盘 txt 地址 rtf kindle docx pdf
- 建筑设计基础 丁蔓琪 浙江大学出版社 【新华书店正版图书书籍】 下载 网盘 txt 地址 rtf kindle docx pdf
- 游书海 戏童年 下载 网盘 txt 地址 rtf kindle docx pdf
- 电力电子技术及其系统仿真 下载 网盘 txt 地址 rtf kindle docx pdf
书籍真实打分
故事情节:3分
人物塑造:4分
主题深度:9分
文字风格:3分
语言运用:3分
文笔流畅:4分
思想传递:4分
知识深度:5分
知识广度:9分
实用性:9分
章节划分:8分
结构布局:6分
新颖与独特:8分
情感共鸣:4分
引人入胜:9分
现实相关:5分
沉浸感:3分
事实准确性:3分
文化贡献:6分