博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Maven进价:Maven构建错误汇总
阅读量:4883 次
发布时间:2019-06-11

本文共 2093 字,大约阅读时间需要 6 分钟。

问题:The method of type must override asuperclass? annotation:@Override的原因

办法:项目右键->build path->configure build path->java Compiler(左边那排中) ->在右边的Compiler compliance level 修改版本为 6.0

参考:http://linhfgo.iteye.com/blog/1470996

 

问题:Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile

办法:Installed JREs  使用本机的JDK

参考:http://macrotea.iteye.com/blog/1521254

 

 

问题:No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?

办法:

1、确认本机安装了JDK。

2、由于Eclipse使用的是JRE导致,添加JDK即可。

参考:http://my.oschina.net/zhuka/blog/124503

 

问题:maven Error configuring application listener of class org.springframework.web.util

1、Clean 项目

2、Clean Server

3、项目的Deployment Assembly 中 添加Maven Dependencies

参考:http://www.yihaomen.com/article/java/471.htm

 

问题:在springMVC中使用Freemarker,配置静态资源路径后(mvc:resources),访问Controller出现404

办法:配置默认的注解映射的支持 <mvc:annotation-driven />

参考:http://my.oschina.net/duoduo3369/blog/168458

 

问题:在springMVC中使用Freemarker,配置静态资源路径后(mvc:resources,静态文件404

办法:在 web.xml 中让springmvc拦截所有请求

spring
/

参考:http://my.oschina.net/duoduo3369/blog/168458

 

问题:Bean property 'maxActive' is not writable or has an invalid

办法:使用 jedis-2.2.0

参考:http://www.haodaima.net/art/2562772

 

问题:No goals have been specified for this build. You must specify a valid lifecycle phase or a goal in the format <plugin-prefix>:<goal> or <plugin-group-id>:<plugin-artifact-id>[:<plugin-version>]:<goal>. Available lifecycle phases are: validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy, pre-clean, clean, post-clean, pre-site, site, post-site, site-deploy. -

办法:pom.xml文件<build>标签里面加上<defaultGoal>compile</defaultGoal>即可 

compile

 

转载于:https://www.cnblogs.com/tenghoo/p/maven_error.html

你可能感兴趣的文章
bash shell redirecting code block
查看>>
【转】再说一说闭包
查看>>
Creating your own header file in C
查看>>
SSIS安装Oracle数据库连接的配置
查看>>
python基础之数据类型(二)
查看>>
Pyhon网络编程上篇
查看>>
使用EVM进行项目管理时的注意事项
查看>>
Sum of odd and even elements
查看>>
SL.XNA中的Popup
查看>>
ICSharpCode.SharpZipLib.dll压缩的zip包,7zip解压时出错
查看>>
ubuntu14.0 服务器webmin安装
查看>>
微信小程序从零开始开发步骤(二)
查看>>
Ruby学习札记(四) 类 函数 代码块
查看>>
7. ZooKeeper的stat结构
查看>>
转:用GMapImageCutter1.4做地图(附下载)
查看>>
nginx + php-fpm 高并发配置 (也包括一部分apache/httpd)
查看>>
$.get/$.post/$.ajax/$.getJSON
查看>>
Java第三次作业
查看>>
6486: An Ordinary Game(规律)
查看>>
EntityFramework 启用迁移 Enable-Migrations 报异常 "No context type was found in the assembly"
查看>>