* 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
35 lines
1.2 KiB
Plaintext
35 lines
1.2 KiB
Plaintext
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||
pageEncoding="ISO-8859-1"%>
|
||
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||
<html>
|
||
<head>
|
||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||
<title>Login Success</title>
|
||
<link href="assets/css/bootstrap-united.css" rel="stylesheet" />
|
||
|
||
</head>
|
||
<body>
|
||
<div style="width: 100%">
|
||
<a href="login.html">Login</a> <a
|
||
href="signup.html">Signup</a>
|
||
</div>
|
||
|
||
<div class="panel panel-success">
|
||
<div class="panel-heading">
|
||
<h3 class="panel-title">Student Enrollment Login success</h3>
|
||
</div>
|
||
<div class="panel-body">
|
||
<div class="alert alert-dismissable alert-success">
|
||
<button type="button" class="close" data-dismiss="alert">×</button>
|
||
<strong>Well done!</strong> You successfully logged-into the system.
|
||
Now you can explore the complete features!
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div></div>
|
||
<div></div>
|
||
<a class="btn btn-primary" href="<spring:url value="login.html"/>">Login
|
||
as different user?</a>
|
||
</body>
|
||
</html> |