bs-santosh 3140ea166d Bs santosh spring mybatis (#1479)
* 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
2017-03-24 17:19:32 +01:00

35 lines
1.2 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<%@ 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> &nbsp;&nbsp;&nbsp; <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>