As I mentioned I want to keep my views modular in some jar (and in future in Database to allow customization if I am building a product). For view I will be using Thymeleaf. It is the best template framework available - highly extensible, super fast and easy to prototype and one could get started with minimal knowledge. Also it can come handy if you intend to send rich emails etc from your application in the future.
Keeping the goal of modularization I will create a new maven quickstart project (archetype : maven-archetype-quickstart). If required create a source folder - src/main/resources to store the view files - thymeleaf templates. You can download the template files from the svn. The link is shared at the end of this post.
Now the only thing that is left is the Spring configuration file - spring-web-config.xml. This is saved under src/main/resources/conf folder. The dispatcher servlet scans and loads this class path resource. The spring configuration file is shown in listing below:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd">
<context:component-scan base-package="com.effectivcrm.controller" />
<mvc:resources location="/assets/img/" mapping="/assets/img/**" />
<mvc:resources location="/assets/css/" mapping="/assets/css/**" />
<mvc:resources location="/assets/js/" mapping="/assets/js/**" />
<bean
class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping">
</bean>
<bean
class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
<property name="cacheSeconds" value="0" /> <!-- NO CACHE -->
</bean>
<bean id="contentNegotiatingResolver"
class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
<property name="mediaTypes">
<map>
<entry key="html" value="text/html" />
<entry key="pdf" value="application/pdf" />
<entry key="xsl" value="application/vnd.ms-excel" />
<entry key="xml" value="application/xml" />
<entry key="json" value="application/json" />
</map>
</property>
</bean>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- Themeleaf View Config -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<bean id="templateResolver"
class="org.thymeleaf.templateresolver.ClassLoaderTemplateResolver">
<property name="suffix" value=".html" />
<property name="templateMode" value="HTML5" />
<property name="cacheable" value="false" />
</bean>
<bean id="templateEngine" class="org.thymeleaf.spring3.SpringTemplateEngine">
<property name="templateResolver" ref="templateResolver" />
</bean>
<bean class="org.thymeleaf.spring3.view.ThymeleafViewResolver">
<property name="templateEngine" ref="templateEngine" />
<property name="characterEncoding" value="UTF-8" />
</bean>
</beans>
Now the different thymeleaf templates are shown in listings below:
Listing 1 : common.html
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org">
<head th:fragment="headerFragment">
<link rel="stylesheet" href="../assets/css/bootstrap.css"
th:href="@{/assets/css/bootstrap.min.css}" />
<link rel="stylesheet" href="../assets/css/bootstrap-responsive.css"
th:href="@{/assets/css/bootstrap-responsive.min.css}" />
<link rel="stylesheet" href="../assets/css/thymeleaf-demo.css"
th:href="@{/assets/css/thymeleaf-demo.css}" />
</head>
<body>
<div class="container"></div>
<footer id="center-footer" th:fragment="footer">
<div id="footerText" class="span12">
Copyright 2012 <a href="http://doanduyhai.wordpress.com">doanduyhai</a>
| <a href="https://github.com/doanduyhai/ThymeLeafDemo">Fork
ThymeLeaf Demo on Github</a> | <a
href="https://twitter.com/#!/doanduyhai">Follow @doanduyhai on
Twitter</a>
</div>
</footer>
</body>
</html>
Listing 2 - home.html
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org">
<head th:include="common :: headerFragment">
<title >effectiv:Home</title>
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
</style>
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="btn btn-navbar" data-toggle="collapse"
data-target=".nav-collapse"> <span class="icon-bar"></span> <span
class="icon-bar"></span> <span class="icon-bar"></span>
</a> <a class="brand" href="#">Project name</a>
<div class="nav-collapse collapse">
<p class="navbar-text pull-right">
Logged in as <a href="#" class="navbar-link">Username</a>
</p>
<ul class="nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container">
<br /> <br /> <br />
<div class="span4 offset4">
<h1>Home</h1>
<form action="authentication" th:action="@{/authentication}"
method="post" class="well">
<fieldset>
<label>Login :</label> <input id="j_username" name="j_username"
type="text" required="required" autofocus="autofocus"
class="input span3" placeholder="Your login..." /> <label>Password
:</label> <input id="j_password" name="j_password" type="password"
required="required" class="input span3"
placeholder="Your password..." />
</fieldset>
<button type="submit" class="btn btn-success">Sign In</button>
<button type="submit" class="btn btn-info">Recover password</button>
</form>
</div>
<div th:include="common :: [//footer]"></div>
</div>
</body>
</html>
Listing 3 - sigin.html
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org">
<head th:include="common :: headerFragment">
<title >effectiv:Sign In</title>
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
</style>
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="btn btn-navbar" data-toggle="collapse"
data-target=".nav-collapse"> <span class="icon-bar"></span> <span
class="icon-bar"></span> <span class="icon-bar"></span>
</a> <a class="brand" href="#">Project name</a>
<div class="nav-collapse collapse">
<p class="navbar-text pull-right">
Logged in as <a href="#" class="navbar-link">Username</a>
</p>
<ul class="nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container">
<br /> <br /> <br />
<div class="span4 offset4">
<h1>Sign In</h1>
<form action="authentication" th:action="@{/authentication}"
method="post" class="well">
<fieldset>
<label>Login :</label> <input id="j_username" name="j_username"
type="text" required="required" autofocus="autofocus"
class="input span3" placeholder="Your login..." /> <label>Password
:</label> <input id="j_password" name="j_password" type="password"
required="required" class="input span3"
placeholder="Your password..." />
</fieldset>
<button type="submit" class="btn btn-success">Sign In</button>
<button type="submit" class="btn btn-info">Recover password</button>
</form>
</div>
<div th:include="common :: [//footer]"></div>
</div>
</body>
</html>
- Authenticate against a hippo repository using spring security
- Spring Custom Namespaces
- Spring Security Part 1 - Simple Login application with database
- 1 Advance OOP + Spring MVC
- Optimizing for Multilingual Content - Version 2.0 a Google Language Update rel="alternate" hreflang="x" annotations in sitemaps
- MVC on the server and on the client
Comments
Post a Comment