Skip to content

Commit bd9b1ed

Browse files
schaudergregturn
authored andcommitted
DATAJDBC-174 - First version of a reference documentation.
1 parent 01478cc commit bd9b1ed

File tree

6 files changed

+579
-0
lines changed

6 files changed

+579
-0
lines changed

src/main/asciidoc/faq.adoc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[[faq]]
2+
[appendix]
3+
= Frequently asked questions
4+
5+
Sorry, no Frequently asked questions so far.

src/main/asciidoc/glossary.adoc

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[[glossary]]
2+
[appendix, glossary]
3+
= Glossary
4+
5+
AOP::
6+
Aspect oriented programming
7+
8+
CRUD::
9+
Create, Read, Update, Delete - Basic persistence operations
10+
11+
Dependency Injection::
12+
Pattern to hand a component's dependency to the component from outside, freeing the component to lookup the dependant itself. For more information see link:$$http://en.wikipedia.org/wiki/Dependency_Injection$$[http://en.wikipedia.org/wiki/Dependency_Injection].
13+
14+
JPA::
15+
Java Persistence API
16+
17+
Spring::
18+
Java application framework - link:$$http://projects.spring.io/spring-framework$$[http://projects.spring.io/spring-framework]
19+

src/main/asciidoc/index.adoc

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
= Spring Data JDBC - Reference Documentation
2+
Jens Schauder
3+
:revnumber: {version}
4+
:revdate: {localdate}
5+
:toc:
6+
:toc-placement!:
7+
:spring-data-commons-docs: https://raw.githubusercontent.com/spring-projects/spring-data-commons/master/src/main/asciidoc
8+
:spring-framework-docs: http://docs.spring.io/spring-framework/docs/{springVersion}/spring-framework-reference/
9+
10+
(C) 2018 The original authors.
11+
12+
NOTE: Copies of this document may be made for your own use and for distribution to others, provided that you do not charge any fee for such copies and further provided that each copy contains this Copyright Notice, whether distributed in print or electronically.
13+
14+
toc::[]
15+
16+
include::preface.adoc[]
17+
18+
19+
:leveloffset: +1
20+
include::new-features.adoc[]
21+
include::{spring-data-commons-docs}/dependencies.adoc[]
22+
include::{spring-data-commons-docs}/repositories.adoc[]
23+
:leveloffset: -1
24+
25+
[[reference]]
26+
= Reference Documentation
27+
28+
:leveloffset: +1
29+
include::jdbc.adoc[]
30+
:leveloffset: -1
31+
32+
[[appendix]]
33+
= Appendix
34+
35+
:numbered!:
36+
:leveloffset: +1
37+
include::faq.adoc[]
38+
include::glossary.adoc[]
39+
:leveloffset: -1

0 commit comments

Comments
 (0)