2.创建启动类
最后更新:2024-08-02 10:25:28
|
状态:未完成
创建启动类,这里只需要注意一下启动时扫描一个org.anyline包,用来注入几个实例,最常用的是AnylineService
package org.anyline.simple.clear; import org.anyline.service.AnylineService; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.ConfigurableApplicationContext; @SpringBootApplication public class ClearApplication { public static void main(String[] args) throws Exception { SpringApplication application = new SpringApplication(ClearApplication.class); ConfigurableApplicationContext context = application.run(args); //可以测试一下serivce有没有成功注入 AnylineService service = context.getBean(AnylineService.class); } }
如果不是web类项目到这里就完成了 接下来可以用AnylineService 操作数据库
可以注入
@Lazy
@Autowired
private AnylineService service ;
也可以直接调用ServiceProxy静态方法,如ServiceProxy.query("表名")
多个数据源的参考【动态数据源】