-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (77 loc) · 1.86 KB
/
index.html
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
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Cronjob</title>
<style type="text/css">
h1
{
font-family:sans-serif;
font-size:180%;
}
img
{
border:0;
}
img.logo
{
float:right;
width:198px;
height:60px;
}
div.footer
{
margin-top:2em;
border-top:1px solid;
padding-top:0.2em;
font-size:70%;
}
</style>
</head>
<body>
<a href="https://exedio.github.io/" target="_blank"><img src="src/com/exedio/cronjob/logo.png" alt="Exedio Logo" class="logo"></a>
<h1>Cronjob</h1>
<div>
A library for executing regular jobs within a java application.
</div>
<h2>Example Environment</h2>
<div>
The example environment provides a representative set of cronjobs,
for instance long running jobs, failing jobs etc.
To start the example environment do:
</div>
<ol>
<li>
Build the application:<br>
Run <tt>ant tomcat</tt>.
</li>
<li>
Start tomcat:<br>
This is done by running
<tt>./catalina.sh run</tt> in directory <a href="tomcat/bin" target="_blank">tomcat/bin</a>.
</li>
<li>
Open the
<a href="http://localhost:8080/cronjob" target="_blank">Example Environment</a>.
</li>
<li>
There is also a
<a href="http://localhost:8080/cronjob2" target="_blank">Second Example Environment</a>
that requires authentication with user name <i>admin</i> and password <i>nimda</i>.
</li>
</ol>
<h2>Development</h2>
<div>
Before starting development, type <tt>ant src</tt>.
This creates all generates sources, so IDEs do not complain.
</div>
<h2>Life Cycle</h2>
<div>
<img src="doc/life-cycle.png">
</div>
<div class="footer">
Copyright © 2006-2010
<a href="http://www.exedio.com/" target="_blank">exedio</a>
Gesellschaft für Softwareentwicklung mbH.
</div>
</body>
</html>