报错信息 [WARNING] [WARNING] Some problems were encountered while building the effective model for com:mmall:war:1.0-SNAPSHOT [WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing. @ line 263, column 21 [WARNING] [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build. [WARNING] [WARNING] For this reason, future Maven versions might no longer support building such malformed projects. [WARNING] 原因 没有设.... 有更新! 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing.解决 开发工具
环境配置 JDK1.8 Win10 问题描述 今天使用Spring配置完之后, 运行测试提示 : Failed to initialize component [org.apache.catalina.webresources.JarResource 解决办法 找到本地仓库位置,一般在C:\Users\Admin\.m2\repository 删除repository目录下面所有文件夹 pom里面加个空行让他重新下载或者在idea中点击下图红色箭头所指按钮 有更新! Failed to initialize component [org.apache.catalina.webresources.JarResource 解决 开发工具
问题描述 以上错误是因为Java版本不匹配 解决办法 需要修改是一下三处: file -> settings -> Build Execution and Deployment -> Java -> Compiler File -> Project Structure -> Module Settings -> Tab: Source: Language Level File -> Project Structure -> Project(In left pane) -> Project language level 有更新! Error:java: 无效的标记: --release 开发工具
准备工作 安装 Git 配置Git # 局部配置 [在项目下面] git config user.name "远程仓库用户名(如:github用户名)" git config user.email "远程仓库绑定邮箱" # 全局配置 git config --global user.name "远程仓库用户名(如:github用户名)" git config --global user.email "远程仓库绑定邮箱" 具体操作步骤 初始化版本库 git init 添加文件到版本库(只是添加到缓存区),.代表添加文件夹下所有文件 git add . 把添加的文件提交到版本库,并填写提交备注 git commit -m "first commit" 把本地库与远程库关联 git remote add origin 你的远程库地址 第一次推送时需要加-u,以后提交就不需要 注意:回车之后需要输入你的远程仓库用户名和密码 git push -u origin master Git 提交代码到远程仓库5步 开发工具