<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8497700570844644232</id><updated>2025-05-28T20:39:21.276+05:30</updated><category term="java"/><category term="Java Collections"/><category term="JEE"/><category term="Hibernate"/><category term="Data Structure"/><category term="Servlet"/><category term="IGNOU"/><category term="Swing"/><category term="Spring Framework"/><category term="Logics"/><category term="Struts 2"/><category term="database"/><category term="JSP"/><category term="Spring MVC"/><category term="Java Networking"/><category term="EJB3"/><category term="JPA"/><category term="RMI"/><category term="jdbc"/><category term="HSQLDB"/><category term="misc"/><category term="Proprties"/><category term="xml"/><category term="Ajax"/><category term="E-commerce"/><category term="Enum"/><category term="FreeMarker"/><category term="JBoss"/><category term="Logging"/><category term="Programs"/><category term="web services"/><title type='text'>Programming For Future</title><subtitle type='html'>Future driven solutions.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default?start-index=26&amp;max-results=25&amp;redirect=false'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>216</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-542183389098615133</id><published>2020-11-02T23:50:00.002+05:30</published><updated>2020-11-02T23:50:25.000+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="E-commerce"/><title type='text'>E-Commerce solutions availalbe </title><summary type="text">Today, we see many eCommerce platforms already up and running. If I try to categories them based on their development cost, here we see the following cases:&amp;nbsp;Enterprise eCommerce platform like hybris, Oracle ATG Web Commerce, IBM Websphere Commerce, etc.&amp;nbsp;&amp;nbsp;These platforms are massive and require many resources and budget to keep them running. These are proprietary solutions built by </summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/542183389098615133/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/542183389098615133?isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/542183389098615133'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/542183389098615133'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2020/11/e-commerce-solutions-availalbe.html' title='E-Commerce solutions availalbe '/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiqWuJf2XCOuc1IYMcTR_9KWOO7c6cKrlwqP0YezjbiBhoPcGQv70zIlaZEi1aiYjrE4y6DrxWO2EWnsGd154rGcH0d4FUKy8lp3BFiDfJJV8KY_YzyfnLA9jBkHJVsexOwpqbU_-0QX1Y/s72-c/ecommerce-1706103_640.png" height="72" width="72"/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-1848698913493169930</id><published>2020-11-01T12:40:00.003+05:30</published><updated>2020-11-01T12:40:33.239+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="java"/><title type='text'>Handling multi-line String in java 14 Using text block</title><summary type="text">Finally, Java has introduced the feature many developers like me looking for. Handling the string which has multiple lines in it, we had to use concatenation approach to store it in a String object. It was hard to handle HTML output from java program or Servlet sometime.&amp;nbsp;For example, here was the approach to handle multiple lines of HTML output earlier. 


 String output = &quot;&amp;lt;html&amp;gt;\n&quot; +</summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/1848698913493169930/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/1848698913493169930?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/1848698913493169930'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/1848698913493169930'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2020/11/handling-multi-line-string-in-java-14.html' title='Handling multi-line String in java 14 Using text block'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-5367080061611945455</id><published>2016-08-21T13:35:00.001+05:30</published><updated>2016-08-21T13:35:48.094+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="java"/><category scheme="http://www.blogger.com/atom/ns#" term="JSP"/><category scheme="http://www.blogger.com/atom/ns#" term="misc"/><title type='text'>Generating Menu Tree Or Catagory Tree hierarchy</title><summary type="text">

There has always been a basic requirements in website or web applications that the menu bar must be dynamic and all menu items should be appeared under their respected parent. Here, if you are managing the menu items in database, then you have to retrieve all menu items in the way that each menu item must have its proper position in menu tree. here you could use just a loop because you don&#39;t </summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/5367080061611945455/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/5367080061611945455?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/5367080061611945455'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/5367080061611945455'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2016/08/generating-menu-tree-or-catagory-tree.html' title='Generating Menu Tree Or Catagory Tree hierarchy'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-872547568999176318</id><published>2015-10-04T12:48:00.001+05:30</published><updated>2015-10-07T08:21:41.866+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="java"/><category scheme="http://www.blogger.com/atom/ns#" term="web services"/><title type='text'>Getting started with Restful web service in java using jersey</title><summary type="text">
Creating Restful web services in java is not a difficult task. You just use some annotation to expose you methods as web service end points. All annotations those turn your method into web services are in javax.ws.rs package. To host you web service, you can use tomcat or any web server. One thing you need to do is, configure the jersey ServletContainer servlet in web.xml for the particular url </summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/872547568999176318/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/872547568999176318?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/872547568999176318'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/872547568999176318'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2015/10/getting-started-with-restful-web.html' title='Getting started with Restful web service in java using jersey'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-6655400952469849961</id><published>2015-10-04T12:47:00.003+05:30</published><updated>2015-10-09T08:53:46.668+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Spring Framework"/><title type='text'>Overview of Spring Framework</title><summary type="text">
Spring framework is the platform which supports for developing java 
applications using its infrastructure (Physical and organizational 
structures). Spring allows you to develop application with simple plan 
old java objects (POJO). Spring takes care of managing objects and their
 lifecycle. This framework provides the stage for your objects to play 
their role and all dependencies the objects </summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/6655400952469849961/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/6655400952469849961?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/6655400952469849961'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/6655400952469849961'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2015/10/overview-of-spring-framework.html' title='Overview of Spring Framework'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj4x1ykIsI7kB6hyRYho-jPz0HUlu9fJNJ235nDtxDtpHXyYnOjtV0NuXlR5GfRIhT84NccahRoKTNZnN0RJnb2YQpBf2RzGLIzH_x3KIPQcQU1VS0kZck_0OR6exzgMXv3fjhdh2pTrMA/s72-c/Spring+Objects+Handling.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-3742903782671923951</id><published>2014-06-22T07:39:00.001+05:30</published><updated>2015-05-18T08:49:08.454+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Spring MVC"/><title type='text'>Spring MVC -  File upload Example</title><summary type="text">
&lt;!-- BEGIN SyntaxHighlighter BEGIN --&gt;




















    SyntaxHighlighter.config.bloggerMode = true;
    SyntaxHighlighter.all();
 
&lt;!-- END SyntaxHighlighter END --&gt;




&amp;nbsp;spring-dispatcher-servlet.xml
&amp;lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&amp;gt;
&amp;lt;beans xmlns=&quot;http://www.springframework.org/schema/beans&quot;
    xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xmlns:mvc=&quot;http://</summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/3742903782671923951/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/3742903782671923951?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/3742903782671923951'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/3742903782671923951'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2014/06/spring-mvc-file-upload-example.html' title='Spring MVC -  File upload Example'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-2319002770374431045</id><published>2014-03-06T20:03:00.004+05:30</published><updated>2014-03-06T22:52:29.896+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="misc"/><title type='text'>Authorize.Net Java Integration - Your script timed out while we were trying to post transaction results to it.</title><summary type="text">
I have been facing the following error while integrating Authorize.Net with java project using Direct Post Method . 

Your script timed out while we were trying to post transaction results to 
it.
&amp;nbsp;&amp;nbsp; Transaction ID: 0
Transaction Result: This transaction has been 
approved.


I searched for solutions but did not get resolved this issue easily. I 
traced network packets and found some </summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/2319002770374431045/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/2319002770374431045?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/2319002770374431045'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/2319002770374431045'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2014/03/authorizenet-java-integration-your.html' title='Authorize.Net Java Integration - Your script timed out while we were trying to post transaction results to it.'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-6459523029252055161</id><published>2013-12-22T09:30:00.000+05:30</published><updated>2013-12-22T09:30:10.895+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Hibernate"/><category scheme="http://www.blogger.com/atom/ns#" term="java"/><category scheme="http://www.blogger.com/atom/ns#" term="JEE"/><category scheme="http://www.blogger.com/atom/ns#" term="Spring Framework"/><category scheme="http://www.blogger.com/atom/ns#" term="Spring MVC"/><title type='text'>javax.validation.ConstraintViolationException: validation failed for classes [*] during update time for groups [javax.validation.groups.Default, ]</title><summary type="text">
This message wasted many hours to figure out the solution.

javax.validation.ConstraintViolationException: validation failed for classes [*] during update time for groups [javax.validation.groups.Default, ]

When I applied the validation as following, I found that the confirmPassword is the field causing validation error. 

ValidatorFactory factory = Validation.buildDefaultValidatorFactory();&amp;</summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/6459523029252055161/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/6459523029252055161?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/6459523029252055161'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/6459523029252055161'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2013/12/javaxvalidationconstraintviolationexcep.html' title='javax.validation.ConstraintViolationException: validation failed for classes [*] during update time for groups [javax.validation.groups.Default, ]'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-2730617037954953677</id><published>2013-12-07T10:36:00.002+05:30</published><updated>2013-12-07T10:36:45.784+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="java"/><title type='text'>Searching perticular extension file in All or Specified location of system using java program</title><summary type="text">
import&amp;nbsp;java.io.*;

public&amp;nbsp;class&amp;nbsp;SearchFile {

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;public&amp;nbsp;static&amp;nbsp;void&amp;nbsp;main(String...&amp;nbsp;ar)&amp;nbsp;throws&amp;nbsp;Exception&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;File&amp;nbsp;f1&amp;nbsp;=&amp;nbsp;new&amp;nbsp;File(&quot;F:/&quot;);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;printFiles(f1);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;static&amp;nbsp</summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/2730617037954953677/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/2730617037954953677?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/2730617037954953677'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/2730617037954953677'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2013/12/searching-perticular-extension-file-in.html' title='Searching perticular extension file in All or Specified location of system using java program'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-7611781905149564416</id><published>2013-11-23T17:07:00.001+05:30</published><updated>2013-11-23T17:07:54.038+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Hibernate"/><title type='text'>Hibernate - Getting records in sorted order and hibernate pagination.</title><summary type="text">
Hibernate has inbuilt API for ordering and retrieving records in pages.We can use Criteria API to get the result from database instead of Using query or load/get. The things those are applied in SQL queires, same are applied here with the help of Criteria API. You can provide selection conditions to criteria object. You can add order and pagination of records. Here is the simple method for </summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/7611781905149564416/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/7611781905149564416?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/7611781905149564416'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/7611781905149564416'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2013/11/hibernate-getting-records-in-sorted.html' title='Hibernate - Getting records in sorted order and hibernate pagination.'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-2578910314399594122</id><published>2013-11-22T17:19:00.000+05:30</published><updated>2013-11-22T17:20:56.865+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Spring Framework"/><category scheme="http://www.blogger.com/atom/ns#" term="Spring MVC"/><title type='text'>Code Snippet- Redirection in Spring MVC</title><summary type="text">&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;@RequestMapping(value&amp;nbsp;=&amp;nbsp;&quot;/admin&quot;)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;public&amp;nbsp;String&amp;nbsp;openDashboard()&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return&amp;nbsp;&quot;redirect:/admin/admin-home&quot;;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;@RequestMapping(value&amp;nbsp;=&amp;nbsp;&quot;/admin/admin-home&quot;)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;public&amp;nbsp;String&amp;nbsp;adminHome()&amp;nbsp;</summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/2578910314399594122/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/2578910314399594122?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/2578910314399594122'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/2578910314399594122'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2013/11/code-snipt-redirection-in-spring-mvc.html' title='Code Snippet- Redirection in Spring MVC'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-7085996193383801404</id><published>2013-05-25T19:55:00.000+05:30</published><updated>2013-12-07T12:17:13.768+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Spring Framework"/><category scheme="http://www.blogger.com/atom/ns#" term="Spring MVC"/><title type='text'>Spring MVC - Ajax based form processing using JQuery and JSON with server side validation</title><summary type="text">
Spring MVC provides support for processing the form as well as server side validation. It maps request parameters to form backing bean and validate the bean object if we have used @Valid annotation. When we submit the form, form get displayed with the error messages if validation is failed. Error messages are managed by Spring MVC and spring MVC binds them to the input fields.

But, If we want </summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/7085996193383801404/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/7085996193383801404?isPopup=true' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/7085996193383801404'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/7085996193383801404'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2013/05/spring-mvc-ajax-based-form-process.html' title='Spring MVC - Ajax based form processing using JQuery and JSON with server side validation'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-4905555236996689193</id><published>2013-05-14T16:51:00.002+05:30</published><updated>2013-11-23T17:12:02.641+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Hibernate"/><category scheme="http://www.blogger.com/atom/ns#" term="java"/><category scheme="http://www.blogger.com/atom/ns#" term="JEE"/><title type='text'>WARNING: SQL Error: 1062, SQLState: 23000 SEVERE: Duplicate entry &#39;*&#39; for key &#39;************&#39;</title><summary type="text">May 14, 2013 4:35:23 PM org.hibernate.util.JDBCExceptionReporter logExceptionsWARNING: SQL Error: 1062, SQLState: 23000May 14, 2013 4:35:23 PM org.hibernate.util.JDBCExceptionReporter logExceptionsSEVERE: Duplicate entry &#39;2&#39; for key &#39;navigation_id&#39;May 14, 2013 4:35:23 PM org.hibernate.event.def.AbstractFlushingEventListener performExecutionsSEVERE: Could not synchronize database state with </summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/4905555236996689193/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/4905555236996689193?isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/4905555236996689193'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/4905555236996689193'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2013/05/warning-sql-error-1062-sqlstate-23000.html' title='WARNING: SQL Error: 1062, SQLState: 23000 SEVERE: Duplicate entry &#39;*&#39; for key &#39;************&#39;'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-578444868020599214</id><published>2013-04-07T11:10:00.001+05:30</published><updated>2013-04-07T11:10:25.132+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="JSP"/><category scheme="http://www.blogger.com/atom/ns#" term="Servlet"/><title type='text'>Uploading file using Servlet/JSP with the help of apache commons-fileupload library</title><summary type="text">
Here is the example to upload the file using commons fileupload library.

package&amp;nbsp;imagesvideos.webcontroller;

import&amp;nbsp;java.io.File;
import&amp;nbsp;java.io.IOException;
import&amp;nbsp;java.io.PrintWriter;
import&amp;nbsp;java.util.List;

import&amp;nbsp;javax.servlet.ServletException;
import&amp;nbsp;javax.servlet.http.HttpServlet;
import&amp;nbsp;javax.servlet.http.HttpServletRequest;
import&amp;nbsp;</summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/578444868020599214/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/578444868020599214?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/578444868020599214'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/578444868020599214'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2013/04/uploading-file-using-servletjsp-with.html' title='Uploading file using Servlet/JSP with the help of apache commons-fileupload library'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-8320454525413733535</id><published>2013-03-27T16:15:00.000+05:30</published><updated>2013-03-27T16:37:10.595+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Spring Framework"/><category scheme="http://www.blogger.com/atom/ns#" term="Spring MVC"/><title type='text'>Spring MVC - Populating domain object (Form backing Object) in view and updating some properties</title><summary type="text">
Sometimes we need to update the domain object partially. We get complete object from database but we have to update some fields of it using html form. In this situation, original Data Object is kept on the server and some fields are asked to be filled by user.

In Sprint MVC, we have implemented feature that helps us to get it done. There is @ModelAttribute annotation that captures Bean object </summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/8320454525413733535/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/8320454525413733535?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/8320454525413733535'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/8320454525413733535'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2013/03/spring-mvc-populating-domain-object.html' title='Spring MVC - Populating domain object (Form backing Object) in view and updating some properties'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-4233721727233742811</id><published>2013-03-24T16:27:00.000+05:30</published><updated>2013-03-24T16:27:00.597+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="java"/><title type='text'>Understanding run time polymorphism of an object</title><summary type="text">Run-time polymorphism is the ability of an object to play multiple roles at run-time. See the following program where the object of Cal class will have different behaviors according the reference variable through which it is pointed. If we access Cal object using c, it has add() and sub() methods. If we access it using a reference variable then only add() method is accessible and same is for b </summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/4233721727233742811/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/4233721727233742811?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/4233721727233742811'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/4233721727233742811'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2013/03/understanding-run-time-polymorphism-of.html' title='Understanding run time polymorphism of an object'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-3872849561391655457</id><published>2013-02-20T22:43:00.000+05:30</published><updated>2013-02-20T22:43:00.376+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="JEE"/><category scheme="http://www.blogger.com/atom/ns#" term="JSP"/><title type='text'>JEE : Java Server Page (JSP)  life cycle</title><summary type="text">All the JSP run under supervising of web server. They do not receive 
requests from client and they do not send the response to client. All 
the JSP pages pass through the Server side processing. And result of 
sever side processing is sent to client. That is why they called dynamic
 pages. In the case of static page there is no server processing, web 
server returns them as they are.

Dotted
 </summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/3872849561391655457/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/3872849561391655457?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/3872849561391655457'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/3872849561391655457'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2013/02/jee-java-server-page-jsp-life-cycle.html' title='JEE : Java Server Page (JSP)  life cycle'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-8302571718990657135</id><published>2013-02-19T22:40:00.000+05:30</published><updated>2013-02-19T22:40:00.658+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Data Structure"/><title type='text'>Popular Logics for implementation to check basic skills of fresher</title><summary type="text">Factorial
long Factorial( int n ) {
if ( n&amp;gt;0 )
return( n * Factorial(n-1) );
else
return( 1 );
}
Fibonacci
int Fibonacci( int n ) {
if ( n==1 || n==2 )
return( 1 );
else
return( Fibonacci(n-1) + Fibonacci(n-2) );
}
GCD
int GCD( int a, int b )
{
if ( a&amp;gt;=b &amp;amp;&amp;amp; a%b==0 )
return( b );
else if ( a&amp;lt;b )
return( GCD( b, a ) );
else
return( GCD( b, a%b ) );
}
Power
double Power( double x, </summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/8302571718990657135/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/8302571718990657135?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/8302571718990657135'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/8302571718990657135'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2013/02/popular-logics-for-implementation-to.html' title='Popular Logics for implementation to check basic skills of fresher'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-4269850257322304065</id><published>2013-02-18T09:30:00.000+05:30</published><updated>2013-02-18T09:30:06.844+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="JEE"/><category scheme="http://www.blogger.com/atom/ns#" term="JSP"/><title type='text'>JSP SCRIPTING ELEMENTS</title><summary type="text">
 Expression tag ( &amp;lt;%=   %&amp;gt;)

This      tag is used to sent the output of the expression to the output stream like      method println().
This      tag allows the developer to embed any Java expression and is short for      out.println().
This      tag starts with &amp;lt;%= and ends with %&amp;gt;.
A      semicolon ( ; ) does not appear at the end of the code inside the tag.

For example,to show </summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/4269850257322304065/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/4269850257322304065?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/4269850257322304065'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/4269850257322304065'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2013/02/jsp-scripting-elements.html' title='JSP SCRIPTING ELEMENTS'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-6786418167907388587</id><published>2013-02-17T04:30:00.000+05:30</published><updated>2013-02-18T08:07:23.185+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="JEE"/><category scheme="http://www.blogger.com/atom/ns#" term="JSP"/><title type='text'>JSP : Predifined variables | implicit objects</title><summary type="text">There are following implicit objects those become available to programmer to use in JSP page.


&amp;nbsp;

out
The out implicit object is an instance of a javax.servlet.jsp.JspWriter object and is used to send content in a response. The JspWriter object emulates some of the functionality found in the java.io.PrintWriter and java.io.BufferedWriter objects to provide a convenient method of writing </summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/6786418167907388587/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/6786418167907388587?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/6786418167907388587'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/6786418167907388587'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2013/02/jsp-predifined-variables-impleciate.html' title='JSP : Predifined variables | implicit objects'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-6061724697880957892</id><published>2013-02-16T22:27:00.001+05:30</published><updated>2013-02-16T22:27:45.568+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Hibernate"/><category scheme="http://www.blogger.com/atom/ns#" term="JPA"/><title type='text'>@AttributeOverrides annotation in hibernate/JPA</title><summary type="text">@AttributeOverrides annotation is used in hibernate/JPA to rename the column(s) name of the embadable class while it is being embedded in other class.
Suppose A class is embedded in class B, then if A entity contains the column name of any property &quot;phone&quot;, then B entity can override the column name to &quot;mobileNumber&quot;. So, in the table, column name will be &quot;mobileNumber&quot;.

package&amp;nbsp;entity;

</summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/6061724697880957892/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/6061724697880957892?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/6061724697880957892'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/6061724697880957892'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2013/02/attributeoverrides-annotation-in.html' title='@AttributeOverrides annotation in hibernate/JPA'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-6699178015204191792</id><published>2013-02-15T21:32:00.001+05:30</published><updated>2013-02-15T22:20:54.157+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Hibernate"/><category scheme="http://www.blogger.com/atom/ns#" term="JPA"/><title type='text'>Hibernate (or JPA) - Using &quot;mappedBy&quot; attribute of mapping annotations(like @OneToOne, @OneToMany, @ManyToMany)</title><summary type="text">Using &quot;mappedBy&quot; attribute of mapping annotations(like @OneToOne, @OneToMany, @ManyToMany) for bi-directional relationship. This attribute allows you to refer the associated entities from both sides. If &quot;X&quot; has association with &quot;Y&quot; then you can get X from Y and Y from X.

For example, If you have &quot;Book&quot; entity and &quot;Author&quot; entity those are associated to each other in the way that Book has a </summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/6699178015204191792/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/6699178015204191792?isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/6699178015204191792'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/6699178015204191792'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2013/02/hibernate-or-jpa-using-mappedby.html' title='Hibernate (or JPA) - Using &quot;mappedBy&quot; attribute of mapping annotations(like @OneToOne, @OneToMany, @ManyToMany)'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-3770439491538608630</id><published>2013-01-19T08:20:00.004+05:30</published><updated>2013-01-19T08:20:56.983+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Hibernate"/><title type='text'>Hibernate SchemaExport tool for Automatic schema generation</title><summary type="text">

Hibernate provides various utilities for developer in which SchemaExport is the one of those utilities that generates SQL queries representing the schema including referential integrity, keys, relationship for the entities and collations. you can use these generated schema to populate the tables structure in database.

Dialect must be specified there before creating schema so that this tool can</summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/3770439491538608630/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/3770439491538608630?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/3770439491538608630'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/3770439491538608630'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2013/01/hibernate-schemaexport-tool-for.html' title='Hibernate SchemaExport tool for Automatic schema generation'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-115872614088538344</id><published>2012-10-06T21:44:00.002+05:30</published><updated>2012-10-16T06:40:18.103+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Struts 2"/><title type='text'>Struts2 Resource Handling - Using Hindi language in internationalization (i18n)</title><summary type="text">
Struts2 provides us different ways for handling message resources. Struts2 supports internationalization for different locales and we can provide message resources for different locales. Struts2 will use resource file naming convention through which it identifies that which message resource file to be used within the particular session.

See the following configuration.
&amp;lt;?xml&amp;nbsp;version=&quot;</summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/115872614088538344/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/115872614088538344?isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/115872614088538344'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/115872614088538344'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2012/10/struts2-resource-handling-using-hindi.html' title='Struts2 Resource Handling - Using Hindi language in internationalization (i18n)'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgMkxBcxryDycVED_kpEKKmLV0j9O_BQiim4do7-PA9E4TbrWjX0idVrgKcXGDrAgy5-ctjmOwRLzpmF-CBrAeU0YvmxKdk98AUNgpmc8fKmUlFQs7mdScyI0EjRIhFJGeCfq_ldKZ3l6k/s72-c/CWindowssystem32cmd.exe_2012-10-06_18-01-25.png" height="72" width="72"/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8497700570844644232.post-6511604162927491443</id><published>2012-09-18T15:00:00.001+05:30</published><updated>2013-11-23T17:12:02.646+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="FreeMarker"/><category scheme="http://www.blogger.com/atom/ns#" term="java"/><category scheme="http://www.blogger.com/atom/ns#" term="JEE"/><title type='text'>FreeMarker : Example</title><summary type="text">


Freemarker&amp;nbsp;is&amp;nbsp;a&amp;nbsp;simple&amp;nbsp;templating&amp;nbsp;engine&amp;nbsp;that&amp;nbsp;can&amp;nbsp;generate&amp;nbsp;text&amp;nbsp;contents&amp;nbsp;from&amp;nbsp;any&amp;nbsp;type&amp;nbsp;of&amp;nbsp;template.&amp;nbsp;It&amp;nbsp;is&amp;nbsp;so&amp;nbsp;simple&amp;nbsp;that&amp;nbsp;you&amp;nbsp;can&amp;nbsp;learn&amp;nbsp;it&amp;nbsp;in&amp;nbsp;a&amp;nbsp;single&amp;nbsp;day&amp;nbsp;and&amp;nbsp;can&amp;nbsp;use&amp;nbsp;it&amp;nbsp;in&amp;nbsp;any&amp;nbsp;project.

It&amp;nbsp;helps&amp;nbsp;you&amp;nbsp;when&amp;</summary><link rel='replies' type='application/atom+xml' href='http://www.programmingforfuture.com/feeds/6511604162927491443/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8497700570844644232/6511604162927491443?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/6511604162927491443'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8497700570844644232/posts/default/6511604162927491443'/><link rel='alternate' type='text/html' href='http://www.programmingforfuture.com/2012/09/freemarker-example.html' title='FreeMarker : Example'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>