Skip to content
Web Firm Framework edited this page Aug 19, 2017 · 28 revisions

Web Firm Framework

module : wffweb

wffweb is one of the modules of webfirmframework, is a light weight java framework which can be run on any low memory servers, read more...

check out this demo app deployed at https://wffweb.herokuapp.com

The below wff java code

Html html = new Html(null) {{
	new Head(this);
	new Body(this) {{
		new Div(this);
	}};
}};
html.setPrependDocType(true);
System.out.println(html.toHtmlString(true));

will generate

<!DOCTYPE html>
<html>
 <head></head> 
 <body> 
  <div></div>  
 </body>
</html>

Check out how to convert html to wff java code