Spring Boot | MyBatis的
当我尝试在控制器中声明一个mybatis映射器时,IDE会强调它,并且不会编译。
@Controller
@RequestMapping("demo")
@MapperScan("com.sample.mapper")
public class MessageController {
private static final String MESSAGE = "message";
private static final String INDEX = "index";
@Autowired
private MessageMapper messageMapper;
@RequestMapping("printMessage/{message}")
public String printMessage(ModelMap modelMap) {
modelMap.addAttribute(MESSAGE, "M");
return INDEX;
}
@RequestMapping("printHello")
public String printHello(ModelMap modelMap) {
modelMap.addAttribute(MESSAGE, "Hello, ");
return INDEX;
}
我最近以某种方式编译了这个类,但是,当我尝试使用messageMapper实例时,如messageMapper.insert()
因为没有赋值,它给了我NullPointerException。看起来Spring出于某种原因不适合我。
答案 0 :(得分:0)
根据documencation,我认为@MapperScan
不是正确的类,它们无法自动装配,因为它们不在控制器创建时的上下文中。当它在Mybatis XML配置文件中定义时,它会加载一个Sql Session Factory Provider,这个地方实际上更有意义,那么它与注释样式不会有所不同。