自動生成的pom文件
<build>
<pluginManagement>
<plugins>
........
</plugins>
</pluginManagement>
</build>
這個時候要想加載mybatis-generator-core 先把pluginManagement標(biāo)簽刪除,等在本地倉庫中下載到generator這個包后,在把pluginManagement這層添加上,至于原因不太清楚,但是最終沒有報錯
<build>
<pluginManagement>
<plugins>
........
</plugins>
</pluginManagement>
</build>
這個時候要想加載mybatis-generator-core 先把pluginManagement標(biāo)簽刪除,等在本地倉庫中下載到generator這個包后,在把pluginManagement這層添加上,至于原因不太清楚,但是最終沒有報錯
2019-03-05
UserVo userVo=new UserVO();
報錯:
Cannot resolve symbol 'UserVo'
已經(jīng)import com.tangym.controller.viewobject.UserVO;
報錯:
Cannot resolve symbol 'UserVo'
已經(jīng)import com.tangym.controller.viewobject.UserVO;
2019-03-03
我這邊會顯示負(fù)秒數(shù),也不會自動reloadDom,然后我把觸發(fā)條件從delta<=0改成了 delta== 0 就好了
2019-02-17