* 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
36 lines
1.1 KiB
Plaintext
36 lines
1.1 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 Failure</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-danger">
|
||
<div class="panel-heading">
|
||
<h3 class="panel-title">Student Enrollment Login failure</h3>
|
||
</div>
|
||
<div class="panel-body">
|
||
<div class="alert alert-dismissable alert-danger">
|
||
<button type="button" class="close" data-dismiss="alert">×</button>
|
||
<strong>Oh snap!</strong> Something is wrong. Change a few things up
|
||
and try submitting again.
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div></div>
|
||
<div></div>
|
||
|
||
<a class="btn btn-primary" href="<spring:url value="login.html"/>">Try
|
||
again?</a>
|
||
</body>
|
||
</html> |