* Spring and MyBatis integration maven project Complete article is available in http://inprogress.baeldung.com/wp-admin/post.php * Spring-MyBatis integration example This code demonstrates how to use MyBatis in Sring environment. Full details could be found in article http://inprogress.baeldung.com/?p=31706&preview=true
34 lines
693 B
Plaintext
34 lines
693 B
Plaintext
<html>
|
|
<head>
|
|
<link href="assets/css/bootstrap-united.css" rel="stylesheet" />
|
|
<link href="bootstrap/css/bootstrap-responsive.css" rel="stylesheet" />
|
|
<style>
|
|
body {
|
|
height: 100%;
|
|
margin: 0;
|
|
background: url(assets/img/books.jpg);
|
|
background-size: 1440px 800px;
|
|
background-repeat: no-repeat;
|
|
display: compact;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div style="width: 100%">
|
|
<a href="login.html">Login</a> <a
|
|
href="signup.html">Signup</a>
|
|
</div>
|
|
|
|
<div>
|
|
<div>
|
|
<div>
|
|
<h1>Welcome to Online Student Enrollment Application</h1>
|
|
<p>Login to explore the complete features!</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div></div>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |