Giter Site home page Giter Site logo

biwafmvc's Introduction

Biwaf MVC

biwaf mvc is simple and minimal java web request/action MVC framework with a dependency injection container the framework is based on servlets and comes with embedded tomcat

configuration of some biwaf application

@Biwaf(basePackage = "org.someproject.application")
public class App {
	
	public static void main(String... args) {
		
		BiwafApplication conifg = new BiwafApplication.Configure()
				.applicationMain(App.class)
				.registerErrorPage(new BiwafApplication.Error(404, "/notFound.html"),
						new BiwafApplication.Error(500, "/error/serverError.html"))
				.port(8080).buildConfiguration();
		conifg.start();
	}
}

create injectable services

@Injectable(id="service", scope=Scope.SINGLETON)
public class SomeService {

	public int getRandomNumber() {
		return new Random().nextInt(100);
	}
	
}

and use that service in action class

@Action
public class TestAction {
	
	@Inject(reference="service")
	private SomeService service;
	
	@Request("/fujo")
	public Response responseTest(){
		return new Text("request to fujo brought you here "+ service.getRandomNumber());
	}
	
	@Request("/user/hello")
	public Response helloResponse(@RequestParam("name") String name) {
		return new Text("Hello "+ name);
	}


}

biwaf is very early in development and not everything is working so fork, improve and create a pull request

biwafmvc's People

Contributors

branislavlazic avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Forkers

branislavlazic

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.