- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.apache.archiva.xml.XMLException
类的一些代码示例,展示了XMLException
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XMLException
类的具体详情如下:
包路径:org.apache.archiva.xml.XMLException
类名称:XMLException
[英]XMLException
[中]XMLException
代码示例来源:origin: apache/archiva
private ArchivaRepositoryMetadata getMetadata( Path metadataFile )
throws RepositoryMetadataException
{
ArchivaRepositoryMetadata metadata = new ArchivaRepositoryMetadata();
if ( Files.exists(metadataFile) )
{
try
{
metadata = MavenMetadataReader.read( metadataFile );
}
catch ( XMLException e )
{
throw new RepositoryMetadataException( e.getMessage(), e );
}
}
return metadata;
}
代码示例来源:origin: org.apache.archiva/archiva-xml-tools
public XMLReader( String type, File file )
throws XMLException
{
if ( !file.exists() )
{
throw new XMLException( "file does not exist: " + file.getAbsolutePath() );
}
if ( !file.isFile() )
{
throw new XMLException( "path is not a file: " + file.getAbsolutePath() );
}
if ( !file.canRead() )
{
throw new XMLException( "Cannot read xml file due to permissions: " + file.getAbsolutePath() );
}
try
{
init( type, file.toURL() );
}
catch ( MalformedURLException e )
{
throw new XMLException( "Unable to translate file " + file + " to URL: " + e.getMessage(), e );
}
}
代码示例来源:origin: org.apache.archiva/maven2-repository
log.warn( "fail to read {}, {}", mavenMetadata.getAbsolutePath(), e.getCause() );
代码示例来源:origin: apache/archiva
log.warn( "fail to read {}, {}", mavenMetadata.toAbsolutePath(), e.getCause() );
代码示例来源:origin: apache/archiva
private ArchivaRepositoryMetadata getMetadata( Path metadataFile )
throws RepositoryMetadataException
{
ArchivaRepositoryMetadata metadata = new ArchivaRepositoryMetadata();
if ( Files.exists(metadataFile) )
{
try
{
metadata = MavenMetadataReader.read( metadataFile );
}
catch ( XMLException e )
{
throw new RepositoryMetadataException( e.getMessage(), e );
}
}
return metadata;
}
代码示例来源:origin: apache/archiva
public XMLReader( String type, Path file )
throws XMLException
{
if ( !Files.exists(file) )
{
throw new XMLException( "file does not exist: " + file.toAbsolutePath() );
}
if ( !Files.isRegularFile(file) )
{
throw new XMLException( "path is not a file: " + file.toAbsolutePath() );
}
if ( !Files.isReadable(file) )
{
throw new XMLException( "Cannot read xml file due to permissions: " + file.toAbsolutePath() );
}
try
{
init( type, file.toUri().toURL() );
}
catch ( MalformedURLException e )
{
throw new XMLException( "Unable to translate file " + file + " to URL: " + e.getMessage(), e );
}
}
代码示例来源:origin: apache/archiva
private ArchivaRepositoryMetadata getMetadata( Path metadataFile )
throws RepositoryMetadataException
{
ArchivaRepositoryMetadata metadata = new ArchivaRepositoryMetadata();
if ( Files.exists(metadataFile) )
{
try
{
metadata = MavenMetadataReader.read( metadataFile );
}
catch ( XMLException e )
{
throw new RepositoryMetadataException( e.getMessage(), e );
}
}
return metadata;
}
代码示例来源:origin: apache/archiva
throw new XMLException( "Unable to parse " + documentType + " xml " + xmlUrl + ": " + e.getMessage(), e );
throw new XMLException( "Unable to open stream to " + url + ": " + e.getMessage(), e );
if ( root == null )
throw new XMLException( "Invalid " + documentType + " xml: root element is null." );
throw new XMLException(
"Invalid " + documentType + " xml: Unexpected root element <" + root.getName() + ">, expected <"
+ documentType + ">" );
代码示例来源:origin: org.apache.archiva/archiva-web-common
private ArchivaRepositoryMetadata getMetadata( File metadataFile )
throws RepositoryMetadataException
{
ArchivaRepositoryMetadata metadata = new ArchivaRepositoryMetadata();
if ( metadataFile.exists() )
{
try
{
metadata = MavenMetadataReader.read( metadataFile );
}
catch ( XMLException e )
{
throw new RepositoryMetadataException( e.getMessage(), e );
}
}
return metadata;
}
代码示例来源:origin: org.apache.archiva/archiva-xml-tools
throw new XMLException( "Unable to parse " + documentType + " xml " + xmlUrl + ": " + e.getMessage(), e );
throw new XMLException( "Unable to open stream to " + url + ": " + e.getMessage(), e );
if ( root == null )
throw new XMLException( "Invalid " + documentType + " xml: root element is null." );
throw new XMLException(
"Invalid " + documentType + " xml: Unexpected root element <" + root.getName() + ">, expected <"
+ documentType + ">" );
代码示例来源:origin: org.apache.archiva/archiva-rest-services
private ArchivaRepositoryMetadata getMetadata( File metadataFile )
throws RepositoryMetadataException
{
ArchivaRepositoryMetadata metadata = new ArchivaRepositoryMetadata();
if ( metadataFile.exists() )
{
try
{
metadata = MavenMetadataReader.read( metadataFile );
}
catch ( XMLException e )
{
throw new RepositoryMetadataException( e.getMessage(), e );
}
}
return metadata;
}
代码示例来源:origin: apache/archiva
public Element getElement( String xpathExpr )
throws XMLException
{
XPath xpath = createXPath( xpathExpr );
Object evaluated = xpath.selectSingleNode( document );
if ( evaluated == null )
{
return null;
}
if ( evaluated instanceof Element )
{
return (Element) evaluated;
}
else
{
// Unknown evaluated type.
throw new XMLException( ".getElement( Expr: " + xpathExpr + " ) resulted in non-Element type -> ("
+ evaluated.getClass().getName() + ") " + evaluated );
}
}
代码示例来源:origin: apache/archiva
log.warn( "skip fail to find timestamped snapshot pom: {}", e.getMessage() );
代码示例来源:origin: org.apache.archiva/archiva-xml-tools
public Element getElement( String xpathExpr )
throws XMLException
{
XPath xpath = createXPath( xpathExpr );
Object evaluated = xpath.selectSingleNode( document );
if ( evaluated == null )
{
return null;
}
if ( evaluated instanceof Element )
{
return (Element) evaluated;
}
else
{
// Unknown evaluated type.
throw new XMLException( ".getElement( Expr: " + xpathExpr + " ) resulted in non-Element type -> ("
+ evaluated.getClass().getName() + ") " + evaluated );
}
}
代码示例来源:origin: org.apache.archiva/maven2-repository
log.warn( "skip fail to find timestamped snapshot pom: {}", e.getMessage() );
代码示例来源:origin: apache/archiva
throw new XMLException( ".getElementList( Expr: " + xpathExpr + " ) resulted in non-List type -> ("
+ evaluated.getClass().getName() + ") " + evaluated );
代码示例来源:origin: apache/archiva
log.warn( "skip fail to find timestamped snapshot file: {}", e.getMessage() );
代码示例来源:origin: org.apache.archiva/archiva-xml-tools
throw new XMLException( ".getElementList( Expr: " + xpathExpr + " ) resulted in non-List type -> ("
+ evaluated.getClass().getName() + ") " + evaluated );
代码示例来源:origin: org.apache.archiva/archiva-rest-services
log.warn( "skip fail to find timestamped snapshot file: {}", e.getMessage() );
代码示例来源:origin: apache/archiva
public String getElementText( Node context, String xpathExpr )
throws XMLException
{
XPath xpath = createXPath( xpathExpr );
Object evaluated = xpath.selectSingleNode( context );
if ( evaluated == null )
{
return null;
}
if ( evaluated instanceof Element )
{
Element evalElem = (Element) evaluated;
return evalElem.getTextTrim();
}
else
{
// Unknown evaluated type.
throw new XMLException( ".getElementText( Node, Expr: " + xpathExpr + " ) resulted in non-Element type -> ("
+ evaluated.getClass().getName() + ") " + evaluated );
}
}
archiva 上是否有某种参数化网址,我可以在其中获取工件的最新快照/版本?喜欢某事 https://myhappyarchiva.com/archiva/repository/com.exampl
我们有在不同地理位置工作的开发人员,我们希望为每个地理位置设置 Archiva(只是为了确保获取工件的往返行程更少)。 是否有可能每当从位置 G1 的 Archiva 上传/删除工件时,相同的更改就会
我们的Archiva信息库从不删除旧快照。 那会产生很多垃圾。 是否可以告诉Archiva仅保留N个快照版本? 此致, 基督教。 最佳答案 请仔细阅读http://archiva.apache.org
我正在尝试在 Archiva 上添加远程存储库。但是,我不断收到 this error在日志中: ERROR org.apache.cxf.jaxrs.utils.JAXRSUtils [] - No
Archiva 文档指出: The standalone installation of Archiva is capable of separating its configuration from
我安装了独立的 Apache Archiva 1.3 Maven 存储库,但在配置电子邮件验证的 SMTP 设置时遇到问题。我通过更改 jetty.xml 中的 mail.smtp.host 属性来配
大问题。我的 Archiva 内部存储库(也许还有快照存储库,虽然我还不知道,因为我还没有在其中放置任何快照)似乎可供公众访问。 即如果有人想要我的 repo 中的 surefire 插件,他们可以通
我正在使用 Apache Archiva 为我的公司设置 Maven 企业存储库。我们现在的要求非常基本 - 为我们的 jar 文件和依赖管理提供一个内部存储库。 我想确保 Archiva 不会将我们
本文整理了Java中org.apache.archiva.xml.XMLException类的一些代码示例,展示了XMLException类的具体用法。这些代码示例主要来源于Github/Stacko
错误信息: java.io.IOException: Access to URL http://maven.company.com/repository/internal/com/comp
我正在使用 apache-archiva-2.2.0 版本。我丢失了管理员密码,所以我想重置管理员用户的密码。 我试图通过删除下面提到的文件来重置密码。 ./apache-archiva-2.2.0/
我正在运行独立的 Archiva 2.2.0 安装。我将 security.properties 文件添加到 ~\conf 目录中。在security.properties中我定义了: securit
我有一个具有以下结构的 projectA-parent: projectA-parent| ----------------|projectA ----------------|projectA-co
是否有人测试过如何在启用安全性的 Archiva 中部署工件。我有以下配置 我的ivysettings.xml 我的build.xml
我有 2 个项目,一个在 JDK 1.5 中,另一个在 JDK 1.6 中。 这两个项目可以使用相同的文件存储库吗?常用的jar会不会有问题。例如,我的理解是有些 jar 文件将使用 JDK 1.6
如果我使用 UI 控制台将 jar 文件添加到 Apache Archiva Maven Repo,版本号将添加到 jar 文件中,但这不是我们想要的。例如,如果您浏览 http://mvnrepos
好的,我正在努力让 Archiva 1.4 在独立模式下使用现有的 Postgres 数据库。谁能帮我配置一下? 最佳答案 与 Olivier 合作,这是我最终的工作数据库配置: jdb
关于安装archiva,如下 http://archiva.apache.org/docs/2.2.3/adminguide/webapp.html war 部署到Tomcat 8.0.2
我希望我的 Archiva 实例受到我的 SSL 证书的安全保护。可用的文档似乎根本没有提到这个主题,这让我感到很奇怪。 我知道 Archiva 由 Jetty 支持(当然支持 SSL),但是当您开始
已经有一些类似的问题,但大多数要么专注于 Nexus 与 Artifactory,要么已经存在几年了。 我想了解这两个项目最近的情况。我的印象是 Nexus 是最受尊敬的存储库管理器,但我确实倾向于(
我是一名优秀的程序员,十分优秀!