-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (121 loc) · 4.19 KB
/
index.html
File metadata and controls
123 lines (121 loc) · 4.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>exedio persistence</title>
<meta name="keywords" content="Persistence, Java">
<meta name="description" content="persistence framework for java">
<link rel="stylesheet" href="cope.css">
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<a id="forkme_banner" href="https://github.com/exedio">View on GitHub</a>
<h1 id="project_title">exedio persistence</h1>
<h2 id="project_tagline">Persistence Framework for Java.</h2>
<a id="buildstatus" href="https://github.com/exedio/persistence/actions/workflows/ant.yml?query=branch%3Amaster">Build Status</a>
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<h3>Overview</h3>
<div>
exedio persistence provides an easy database access layer for java applications.
It makes development faster compared to other persistence frameworks.
<ul>
<li>
Supports
<a href="https://www.mysql.com/">MySQL</a>,
<a href="https://www.postgresql.org/">PostgreSQL</a>, and
<a href="http://www.hsqldb.org/">HSQLDB</a>.
</li>
<li>No XML files need to be written, anything is easily specified within your java source code.</li>
<li>No setting up of database tables - the framework does that for you.</li>
<li>Transparent loading and writing of persistent objects.</li>
<li>Easy-to-use search API for even complex queries providing type safety at compile-time.</li>
<li>Complete isolation from the database,
allows switching the DBMS instantly and
eliminates
<a href="https://en.wikipedia.org/wiki/SQL_injection">SQL injection</a>
security vulnerability.
</li>
<li>Comes with a web application supporting the evolution of the persistent schema without loss of data.</li>
</ul>
</div>
<h3>Documentation</h3>
<div>
Documentation is organized into trails,
which show you how to use exedio persistence on examples.
<ul>
<li>
<a href="intro.html">Introduction Trail</a>
tells you how to get started in your project.
</li>
<li>
<a href="fields.html">Field Trail</a>
tells you what kind of data can be stored using exedio persistence.
</li>
<li>
<a href="transactions.html">Transactions Trail</a>
tells you how to use transactions.
</li>
<li>
<a href="searching.html">Searching Trail</a>
gives you an introduction into the searching capabilities of exedio persistence.
</li>
<li>
<a href="fields2.html">Field Reloaded Trail</a>
covers all the more specific possibilities to store data
not mentioned in the Field Trail.
</li>
<li>
<a href="webapplications.html">Web Application Trail</a>
shows you the little differences when using the exedio persistence within a web container.
</li>
<li>
<a href="schema.html">Schema Trail</a>
shows you the schema evolution support of exedio persistence.
</li>
</ul>
Additional information:
<ul>
<li>
<a href="api/index.html">API documentation</a>
</li>
<li>
<a href="testprotocol.html">Test Environments</a>
lists the enviroments exedio persistence is tested on
by exedio's own
<a href="https://en.wikipedia.org/wiki/Continuous_integration">Continuous Integration</a>
server.
</li>
</ul>
</div>
<h3>Availability</h3>
<div>
The source code of all frameworks is available at
<a href="https://github.com/exedio">github</a>.
The demo application is available at
<a href="http://sourceforge.net/projects/cope/files/copedemo/">sourceforge</a>.
</div>
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
<p>
Maintained by
<a href="https://www.exedio.com/" target="_top">exedio</a>
Gesellschaft für Softwareentwicklung mbH.
</p>
<a href="https://validator.w3.org/check?uri=referer" class="validhtml">Valid HTML5</a>
<p>
Slate theme by <a href="https://github.com/jasoncostello">Jason Costello</a>.
Published with <a href="https://pages.github.com">GitHub Pages</a>.
</p>
</footer>
</div>
</body>
</html>