ActiveMQQueue无法解析为spring-boot-sample类型

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActiveMQQueue无法解析为spring-boot-sample类型相关的知识,希望对你有一定的参考价值。

我是java的新手。我正在研究春季靴子样品example

我正在尝试spring-boot-sample-activemq。我的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>
<parent>
    <!-- <groupId>org.springframework.boot</groupId> -->
    <!-- <artifactId>spring-boot-samples</artifactId> -->
    <!-- <version>2.0.0.BUILD-SNAPSHOT</version> -->
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.6.RELEASE</version>
</parent>
<groupId>sample.activemq</groupId>
<artifactId>spring-boot-sample-activemq</artifactId>
<!-- <version>0.0.1-SNAPSHOT</version> -->
<name>Spring Boot ActiveMQ Sample</name>
<dependencies>
    <!-- Compile -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-activemq</artifactId>
    </dependency>
    <!-- Test -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
</dependencies>
<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>

我在下面的java类中遇到错误(ActiveMQQueue无法解析为类型)

的src /主/爪哇/样品/ ActiveMQ的/ SampleActiveMQApplication.java

package sample.activemq;

import java.util.Queue;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
import org.springframework.jms.annotation.EnableJms;

@SpringBootApplication
@EnableJms
public class SampleActiveMQApplication {

@Bean
public Queue queue() {
    return new ActiveMQQueue("sample.queue");
}

public static void main(String[] args) {
    SpringApplication.run(SampleActiveMQApplication.class, args);
}

 }

还有两个类与Consumer and Producer classes完全相同

答案

最后我解决了我的问题

运行mvn dependency:purge-local-repository删除所有依赖项并强制重新下载。

另一答案

或者你可以在你的pom.xml中使用它

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-jms</artifactId>
    <version>5.1.3.RELEASE</version>
</dependency>

以上是关于ActiveMQQueue无法解析为spring-boot-sample类型的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot UnsatisfiedDependencyException 创建名称为无法解析的循环引用的 bean 时出错

Java、Spring、Apache Tiles 错误:无法解析名称为“dispatcher”的 servlet 中名称为“index”的视图

当我尝试使用 Spring Boot 为 SessionFactory 创建 bean 时无法解析的循环引用

EnableWebSecurity 无法解析为类型

Spring Security 无法解析的循环引用

java spring-boot错误:“无法解析符号jdbc”