Skip to content
/ FPFW Public

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

Notifications You must be signed in to change notification settings

saturngod/FPFW

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages