The questions provided in this repository are the summary of frequently asked questions across numerous companies. We cannot guarantee that these questions will actually be asked during your interview ...
/** * application 启动类,也就是传说中的spring boot 启动类了 */ @SpringBootApplication @MapperScan (basePackages = { "com.spring.dao" }) // mapper 扫描一下这个包 public class BootApplication { static public ...