java doc 插件 报 Error fetching link: target\javadoc-bundle-options. Ignored it.
时间: 2024-02-23 09:55:58 浏览: 126
这个错误信息表明,JavaDoc插件在获取target\javadoc-bundle-options链接时出现了问题,导致链接无法获取并被忽略掉了。
这个问题可能是由于插件配置有误、网络不稳定或者本地缓存问题导致的。你可以先检查插件的配置,确保配置正确。如果配置无误,可以尝试清除本地缓存或者重启系统来解决问题。此外,你也可以尝试检查网络连接是否稳定,或者是尝试在其他网络环境下尝试运行插件。
相关问题
Fetching upstream changes from git@github. com:a792883583/treeHoleScore.git > /usr/bin/git --version # timeout=10 > git --version # 'git version 1.8.3.1' using GIT _ASKPASS to set credentials github > /usr/bin/git fetch --tags --progress git@github. com:a792883583/treeHoleScore.git +refs/heads/*:refs/remotes/origin/* # timeout=10 ERROR: Error fetching remote repo 'origin' hudson. plugins.git.GitException: Failed to fetch from git@github. com:a792883583/treeHoleScore.git at hudson. plugins . git .GitSCM. fetchFrom(GitSCM. java:1003) at hudson. plugins .git .GitSCM. retrieveChanges(GitSCM. java:1245) at hudson.plugins.git.GitsCM. checkout(GitSCM. java:1309) at hudson.scm. SCM. checkout(SCM. java:540) at hudson. mode1. AbstractProject . checkout(AbstractProject . java:1240) at hudson. model AbstractBuild$AbstractBuildExecution. def aultCheckout (AbstractBuild. java:649) at jenkins .scm. SCMCheckoutStrategy . checkout(SCMCheckoutStrategy . java:85) at hudson . model. AbstractBuild$AbstractBuildExecution. run(AbstractBuild. java:521) at hudson.model . Run. execute(Run. java:1900) at hudson.model. FreeSty1eBuild.run(FreeStyleBuild.java:44) at hudson. model. ResourceController . execute(ResourceController . java:101) at hudson. model. Executor .run(Executor. java:442) Caused by: hudson. plugins.git .GitException: Command "/usr/bin/git fetch --tags --progress git@github . com: a792883583/treeHoleScore.git +refs/heads/* :refs/remotes/origin/*" returned status code 128: stdout: stderr: Host key verification failed. fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. at org.jenkinsci .plugins.gitclient .CliGitAPIImp1.1aunchCommandIn(CliGitAPImp1.java:2734) at org.jenkinsci .plugins.gitclient .CliGitAPIImp1.1aunchCommandWithCredentials(CliGitAPIImpl.java:2111) at org.jenkinsci.plugins . gitclient .CliGitAPIImp1$1. execute(CliGitAPIImp1.java:623) at hudson.p1ugins . git .GitSCM. fetchFrom (GitSCM. java:1001) 11 more ERROR: Error fetching remote repo ' origin' Finished: FAILURE
"Fetching upstream changes from git@github.com:a792883583/treeHoleScore.git" 意思是从 "git@github.com:a792883583/treeHoleScore.git" 这个地址获取最新的更改。
"/usr/bin/git --version" 意思是在本地执行 "git" 命令,并使用 "--version" 选项来查看当前 Git 版本。
win10下java -jar boot.jar 提示如下信息 2023-07-14 12:45:41.939 DEBUG 10160 --- [ main] o.s.jdbc.datasource.DataSourceUtils : Fetching JDBC Connection from DataSource log4j:WARN No appenders could be found for logger (com.alibaba.druid.pool.DruidDataSource). log4j:WARN Please initialize the log4j system properly. 2023-07-14 12:45:52.429 WARN 10160 --- [ main] o.s.b.a.orm.jpa.DatabaseLookup : Unable to determine jdbc url from datasource org.springframework.jdbc.support.MetaDataAccessException: Could not get Connection for extracting meta-data; nested exception is org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Could not create connection to database server. Attempted reconnect 3 times. Giving up.
这个错误提示表明在运行 `java -jar boot.jar` 命令时出现了问题。主要的错误信息是 `Could not create connection to database server`,意味着无法连接到数据库服务器。
可能的原因和解决方法如下:
1. 数据库配置错误:请确保你的数据库配置正确,并且数据库服务器正在运行。检查 `application.properties` 或 `application.yml` 文件中的数据库连接信息,包括数据库的主机名、端口号、用户名和密码等。
2. 缺少数据库驱动程序:请确认你的项目中是否添加了正确的数据库驱动程序。根据错误信息中的 `com.alibaba.druid.pool.DruidDataSource` 可以推测你使用的是阿里巴巴的 Druid 数据库连接池。确保已经添加了相关的依赖库并配置正确。
3. 日志配置问题:根据错误信息中的 log4j 警告,可能存在日志配置问题。请确保你的日志配置正确,并且 log4j 能够正常初始化。可以检查项目中的 log4j 配置文件,或者根据具体情况进行调整。
4. 网络连接问题:如果数据库服务器在远程主机上,请确保你的网络连接正常并且能够访问到数据库服务器。尝试通过其他方式(如命令行或其他客户端工具)测试连接数据库。
希望这些解决方法能帮助你解决问题。如果还有其他疑问,请随时提问。
阅读全文