IDEA匯入專案筆記二

悢七發表於2020-09-28

1. Error:java: 無效的目標發行版: 11
file–>project structure–>在這裡插入圖片描述

在這裡插入圖片描述
file–>setting–>
在這裡插入圖片描述
2. org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)
mybatis中dao介面與mapper配置xml檔案在做對映繫結的時候出現問題
解決方法
1.找到你的mapper.xml檔案,檢查
在這裡插入圖片描述
2.檢查mapper.xml檔案有沒有寫全你所用到的方法。
3.檢查application.yml檔案
在這裡插入圖片描述

3. Consider defining a bean of type ‘com.demo.mapper.UserMapper’ in your configuration.
註解問題
解決:該用的註解都用上,並正確使用。
4. Servlet.service() for servlet [dispatcherServlet] threw exception
加註解@Autowired
5. 註解@Autowired正確使用卻一直報錯
在註解上面新增
在這裡插入圖片描述

@SuppressWarnings("SpringJavaInjectionPointsAutowiringInspection")
    @Autowired
    UserMapper userMapper;

相關文章