簡體   English   中英

Microsoft Event Hub發送Java

[英]Microsoft Event hub send java

我正在Microsoft網站上按照本教程進行操作,以將簡單的send事件發送到Azure事件中心以在Java中工作。 但是,我使用了maven並遵循了所有內容,但最終的jar文件運行時出現異常錯誤。 請這是我所做的。

我在Eclipse Juno中創建了簡單的Maven項目,這是我pom.xml的內容

`<project xmlns="http://maven.apache.org/POM/4.0.0" 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 <description>Java libraries for talking to Windows Azure Event Hubs</description>
<modelVersion>4.0.0</modelVersion>

<groupId>com.microsoft.azure</groupId>
<artifactId>send</artifactId>
<version>0.0.1-SNAPSHOT</version>
 <packaging>jar</packaging>

<build>
  <plugins>
    <plugin>
       <!-- Build an executable JAR -->
       <groupId>org.apache.maven.plugins</groupId>
       <artifactId>maven-jar-plugin</artifactId>
       <version>3.0.2</version>
       <configuration>
         <archive>
           <manifest>
             <addClasspath>true</addClasspath>
             <classpathPrefix>lib/</classpathPrefix>
             <mainClass>com.bd.Send</mainClass>
           </manifest>
         </archive>
       </configuration>
     </plugin>
   </plugins>
 </build>

 <dependencies>
        <dependency> 
        <groupId>com.microsoft.azure</groupId> 
        <artifactId>azure-eventhubs</artifactId> 
        <version>0.14.0</version> 
        </dependency>   
 </dependencies>


 </project>`

這個pom.xml文件正確嗎? 當我運行最終的jar文件時,出現異常錯誤,但項目正確編譯。

如何使用Maven配置發送事件中心Java項目?

提前致謝

這是有效的pom.xml文件:

<project xmlns="http://maven.apache.org/POM/4.0.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0     http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>send</groupId>
  <artifactId>send</artifactId>
  <version>0.0.1-SNAPSHOT</version>

 <repositories>
    <repository>
        <id>osssonatype</id>
        <name>OSS Sonatype</name>
        <url>https://repo1.maven.org/maven2/</url>
        <layout>default</layout>
    </repository>
</repositories>



  <dependencies>
    <dependency> 
        <groupId>com.microsoft.azure</groupId> 
        <artifactId>azure-eventhubs</artifactId> 
        <version>0.14.0</version> 
    </dependency>   

  </dependencies>

  <build>
    <plugins>
      <!-- any other plugins -->
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>single</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
        <archive>
          <manifest>
            <mainClass>sdasf.Send</mainClass>
          </manifest>
        </archive>
          <descriptorRefs>
            <descriptorRef>jar-with-dependencies</descriptorRef>
          </descriptorRefs>
        </configuration>
      </plugin>
    </plugins>
  </build>

</project>

當以Maven運行時安裝。 在目標文件夾中將有2個jar文件。 運行具有依賴性的解決了我的問題。

在cmd命令行上:

java -jar send-0.0.1-SNAPSHOT-jar-with-dependencies.jar

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM