Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 357 Bytes

README.md

File metadata and controls

14 lines (13 loc) · 357 Bytes

SF 模仿SpringBoot实现的一个框架

功能列表:

  • 自动装配
  • 自动注入
  • ...
public class App{
    public static void main(String[] args) throws Exception {
        Application.run(App.class,args);
    }
}

启动与SpringBoot一样,不过没有@SpringBootApplication注解,还有很多功能待补充。