Intellij Idea - 无法自动装配。找不到“ApplicationRepository”类型的 bean。 less... (Ctrl+F1) 检查 bean 类中的自动装配问题

Posted

技术标签:

【中文标题】Intellij Idea - 无法自动装配。找不到“ApplicationRepository”类型的 bean。 less... (Ctrl+F1) 检查 bean 类中的自动装配问题【英文标题】:Intellij Idea - Could not autowire. No beans of 'ApplicationRepository' type found. less... (Ctrl+F1) Checks autowiring problems in a bean class 【发布时间】:2013-04-26 17:21:05 【问题描述】:

我是 Java 新手。

我正在制作这个tutorial(Spring MVC + Hibernate + Tomcat)

到目前为止一切都很好。当我尝试创建 ApplicationController 时,我无法自动连接 ApplicationRepository

我在部署应用程序时收到此错误消息和404 错误代码:

Could not autowire. No beans of 'ApplicationRepository' type found. less...     
(Ctrl+F1) 
Checks autowiring problems in a bean class.

好的谈话很便宜。

这里是 repo(github!):https://github.com/maciejkowalski/sample-spring-app

Tomcat stacktrace:https://gist.github.com/maciejkowalski/c7512d82feb75fcebd5f

这是代码

root/src/main/java/wzpweb/

package wzpweb;

import javax.persistence.*;

@Entity(name = "applications")
public class Application 
    @Id
    @GeneratedValue(strategy = GenerationType.AUTO)
    private Long id;

    @Basic
    private String name;

    @Basic
    private String ip;

    @Basic
    private Boolean alive;

    @Basic
    private Integer port;

    public Long getId() 
        return id;
    

    public void setId(Long id) 
        this.id = id;
    

    public String getName() 
        return name;
    

    public void setName(String name) 
        this.name = name;
    

    public String getIp() 
        return ip;
    

    public void setIp(String ip) 
        this.ip = ip;
    

    public Boolean getAlive() 
        return alive;
    

    public void setAlive(Boolean alive) 
        this.alive = alive;
    

    public Integer getPort() 
        return port;
    

    public void setPort(Integer port) 
        this.port = port;
    



package wzpweb;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

@Controller
public class ApplicationController 

    @Autowired
    private ApplicationRepository applicationRepository;
    // THIS IS NOT WORKING !! ACHTUNG!

    @RequestMapping(value = "/", method = RequestMethod.GET)
    public String listApplications(ModelMap model) 
        model.addAttribute("application", new Application());
        model.addAttribute("applications", applicationRepository.findAll());
        return "users";
    



package wzpweb;

import org.springframework.data.jpa.repository.JpaRepository;

public interface ApplicationRepository extends JpaRepository<Application, Long> 

root/src/main/webapp/WEB-INF/mvc-dispatcher-servlet.xml

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:jpa="http://www.springframework.org/schema/data/jpa" xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">

    <context:component-scan base-package="wzpweb"/>

    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/pages/"/>
        <property name="suffix" value=".jsp"/>
    </bean>

    <jpa:repositories base-package="wzpweb"/>

    <bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalEntityManagerFactoryBean">
        <property name="persistenceUnitName" value="defaultPersistenceUnit"/>
    </bean>

    <bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
        <property name="entityManagerFactory" ref="entityManagerFactory" />
    </bean>

    <tx:annotation-driven transaction-manager="transactionManager"/>

</beans>

root/src/main/webapp/WEB-INF/web.xml

<web-app version="2.4"
    xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

    <display-name>Spring MVC Application</display-name>

    <servlet>
        <servlet-name>mvc-dispatcher</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>mvc-dispatcher</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
</web-app>

root/src/main/resources/META-INF/persistance.xml

<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
    <persistence-unit name="defaultPersistenceUnit" transaction-type="RESOURCE_LOCAL">
        <provider>org.hibernate.ejb.HibernatePersistence</provider>
        <properties>
            <property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQLDialect"/>
            <property name="hibernate.connection.url" value="jdbc:postgresql://localhost/sample"/>
            <property name="hibernate.connection.driver_class" value="org.postgresql.Driver"/>
            <property name="hibernate.connection.username" value="postgres" />
            <property name="hibernate.connection.password" value="123" />
            <property name="hibernate.show_sql" value="true"/>
            <property name="hibernate.format_sql" value="true"/>
            <property name="hibernate.hbm2ddl.auto" value="create-drop" />
        </properties>
    </persistence-unit>
</persistence>

root/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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.springapp</groupId>
    <artifactId>WZP_aplikacja_web</artifactId>
    <packaging>war</packaging>
    <version>1.0-SNAPSHOT</version>
    <name>WZP_aplikacja_web</name>

    <properties>
        <spring.version>3.2.2.RELEASE</spring.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
            <version>$spring.version</version>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-web</artifactId>
            <version>$spring.version</version>
        </dependency>

        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>3.0</version>
        </dependency>

        <dependency>
            <groupId>javax.servlet.jsp</groupId>
            <artifactId>jsp-api</artifactId>
            <version>2.1</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>$spring.version</version>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
            <version>$spring.version</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.8.2</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>jstl</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
        </dependency>

        <dependency>
            <groupId>org.springframework.data</groupId>
            <artifactId>spring-data-jpa</artifactId>
            <version>1.2.0.RELEASE</version>
        </dependency>

        <dependency>
            <groupId>org.hibernate.javax.persistence</groupId>
            <artifactId>hibernate-jpa-2.0-api</artifactId>
            <version>1.0.1.Final</version>
        </dependency>


        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-entitymanager</artifactId>
            <version>4.2.0.Final</version>
        </dependency>


        <dependency>
            <groupId>postgresql</groupId>
            <artifactId>postgresql</artifactId>
            <version>9.1-901.jdbc4</version>
        </dependency>
    </dependencies>

    <build>
        <finalName>WZP_aplikacja_web</finalName>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <includes>
                        <include>**/*Tests.java</include>
                    </includes>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

编辑#1

我已经编辑了web.xml并添加了代码:

<web-app version="2.4"
    xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

    <display-name>Spring MVC Application</display-name>

    <servlet>
        <servlet-name>mvc-dispatcher</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>mvc-dispatcher</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
</web-app>

但现在我从 Intellij IDEA 获得 Element listener-class is not allowed her

我的应用甚至没有部署。


编辑#2

问题仍然存在。

我将persistance.xml 重命名为persistence.xml

重新启动 Intellij idea 仍然出现此错误。

也许这是一个错误?

我可能会放弃这个春天的东西,它超出了我的范围......

【问题讨论】:

这里是第三个代码。或者你可以查看github:github.com/maciejkowalski/sample-spring-app/blob/master/src/… 看看我的回答。这个错误真的很弱哈哈。 本教程有一个固定版本,有问题的人可以一起找到所有修复:bitbucket.org/cg-lab/… 感谢您的回答。老实说,那天(2013 年 4 月 23 日)我从 Spring 切换到了 RoR,我作为 Ruby 开发人员已经 3 年多。我在一天之内写了这个快速项目... 【参考方案1】:

我遵循相同的教程并遇到相同的代码检查警告(即使应用程序运行正常,IDE 也会抱怨)。为了修复它,我将 @Repository 添加到我的 JpaRepository:

你的例子:

package wzpweb;

import org.springframework.data.jpa.repository.JpaRepository;

@Repository
public interface ApplicationRepository extends JpaRepository<Application, Long> 

【讨论】:

【参考方案2】:

将您的文件 persistance.xml 重命名为 persistence.xml。默认情况下,persistence.xmlMETA-INF/ 目录中用于定义 entityManagerFactory 所需的持久性单元的文件的名称。

Here 的博客文章解释了 Spring 如何使用您的自定义接口实现 JpaRepository 来生成实现类。我最初认为您需要一个实现类,但事实并非如此。

命名中的小错误是您的问题,由堆栈跟踪中的第一个异常给出。

javax.persistence.PersistenceException: No Persistence provider for EntityManager named defaultPersistenceUnit

【讨论】:

Soo 看起来这个教程已经过时了。 confluence.jetbrains.com/display/IntelliJIDEA/… 我会在 1 分钟内检查这个答案。 :) 谢谢。 这是实现该类的好来源吗? github.com/SpringSource/spring-data-jpa/blob/master/src/main/…(复制粘贴并检查一些代码:)) @nothing-special-here 忽略我之前所说的一切,按照我在回答中提出的要求去做。我走错了路,因为我没有查看完整的堆栈跟踪。 另一个例外 :) -> gist.github.com/maciejkowalski/6fca0363f8a37c5987b7【参考方案3】:

在 web.xml 中添加一个上下文加载器侦听器,以便在启动时读取 Spring 应用上下文 XML。

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/context/applicationContext.xml,/WEB-INF/context/applicationContext-*.xml</param-value>
</context-param>

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

【讨论】:

你能详细解释一下吗?我是一个完全的新手。 :) 糟糕,我没有applicationContext.xml 文件。 还是不行。我将编辑我的帖子并添加更多信息。 @nothing-special-here &lt;listener&gt; 元素必须位于所有 &lt;servlet&gt; 元素之前。不过,这无济于事。 @SotiriosDelimanolis 好的,我修复了这个问题,但没有出现错误,但我仍然无法正确部署。【参考方案4】:

删除 Spring facet(文件->项目结构) 在相关模块配置内容的方面杀掉项目配置,IDEA自动识别。删除后,相关错误消失。不影响编译。

【讨论】:

【参考方案5】:

当您创建 ObjectService 并在 RestController 中实例化它并且您没有使用 @ 注释 ObjectServiceImpl 时会出现类似的问题服务

【讨论】:

以上是关于Intellij Idea - 无法自动装配。找不到“ApplicationRepository”类型的 bean。 less... (Ctrl+F1) 检查 bean 类中的自动装配问题的主要内容,如果未能解决你的问题,请参考以下文章

IntelliJ IDEA 2017版 spring-boot2.0.2 自动配置Condition

intellij 错误地说没有为自动装配的存储库找到类型的 bean

IntelliJ IDEA使用alt+enter无法自动import某个类,手动impport也没有这个类的提示

intellij idea maven project 无法显示dependencies

IntelliJ IDEA无法更新maven索引

intellij idea 修改代码后自动编译更新