saturngod / FPFW

Final Project Framework , playing around with Annotation and trying to do like Spring Framework for learning purpose

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Supported Annotations

  • @Async
  • @AutoWire
  • @EventListner
  • @Profile
  • @Qualifier
  • @Scheduled
  • @Service
  • @Value

Setup Application

@FPFWApplication
public class Application implements Runnable {

    @AutoWire
    ProductService productService;

    public static void main(String[] args) {
        FPFWContext.run(Application.class);
    }

    @Override
    public void run() {
        System.out.println("HELLO WORKING FINE");
        productService.show();
    }
}

About

Final Project Framework , playing around with Annotation and trying to do like Spring Framework for learning purpose


Languages

Language:Java 100.0%