- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
尝试运行我的 spring boot 应用程序,我的编译器说;"com.example.hello_world.UserService 中的字段存储库需要一个名为“entityManagerFactory”的 bean,但无法找到。
注入(inject)点有以下注解: - @org.springframework.beans.factory.annotation.Autowired(required=true)"
刚接触 Spring Boot,所以我不太确定为什么我的项目没有运行。尝试使用不同的注释,甚至使用 "basePackages={"com.example.hello_world"} "并向我的 xml 文件添加不同的依赖项,但似乎没有任何效果。不确定哪个文件是我的配置文件。中号我的编译器
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v2.2.4.RELEASE)
2020-02-08 13:30:58.527 INFO 904 --- [ main] c.e.hello_world.HelloWorld1Application : Starting HelloWorld1Application on LAPTOP-QBE4L7C0 with PID 904 (C:\Users\Tristan\eclipse-workspace\hello_world-1\target\classes started by Tristan in C:\Users\Tristan\eclipse-workspace\hello_world-1)
2020-02-08 13:30:58.530 INFO 904 --- [ main] c.e.hello_world.HelloWorld1Application : No active profile set, falling back to default profiles: default
2020-02-08 13:30:58.914 INFO 904 --- [ main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2020-02-08 13:30:58.962 INFO 904 --- [ main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 39ms. Found 1 JPA repository interfaces.
2020-02-08 13:30:59.390 INFO 904 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2020-02-08 13:30:59.397 INFO 904 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2020-02-08 13:30:59.397 INFO 904 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.30]
2020-02-08 13:30:59.519 INFO 904 --- [ main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2020-02-08 13:30:59.519 INFO 904 --- [ main] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 949 ms
2020-02-08 13:30:59.582 WARN 904 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'appController': Unsatisfied dependency expressed through field 'service'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userService': Unsatisfied dependency expressed through field 'repo'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userRepository': Cannot create inner bean '(inner bean)#420745d7' of type [org.springframework.orm.jpa.SharedEntityManagerCreator] while setting bean property 'entityManager'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name '(inner bean)#420745d7': Cannot resolve reference to bean 'entityManagerFactory' while setting constructor argument; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'entityManagerFactory' available
2020-02-08 13:30:59.584 INFO 904 --- [ main] o.apache.catalina.core.StandardService : Stopping service [Tomcat]
2020-02-08 13:30:59.657 INFO 904 --- [ main] ConditionEvaluationReportLoggingListener :
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2020-02-08 13:30:59.728 ERROR 904 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter :
***************************
APPLICATION FAILED TO START
***************************
Description:
Field repo in com.example.hello_world.UserService required a bean named 'entityManagerFactory' that could not be found.
The injection point has the following annotations:
- @org.springframework.beans.factory.annotation.Autowired(required=true)
Action:
Consider defining a bean named 'entityManagerFactory' in your configuration.
我的 xml 文件
<?xml version="1.0" encoding="UTF-8"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.4.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>hello_world-1</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>hello_world-1</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.springframework/spring-beans -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/org.eclipse.persistence/eclipselink -->
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>eclipselink</artifactId>
<version>2.5.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/mssql-jdbc -->
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-core -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>6.0.0.Alpha4</version>
<type>pom</type>
</dependency>
<!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-entitymanager -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>6.0.0.Alpha4</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<scope>runtime</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework.data/spring-data-jpa -->
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
我的项目的第一个文件,
package com.example.hello_world;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
@SpringBootApplication
@EnableJpaRepositories
public class HelloWorld1Application {
public static void main(String[] args) {
SpringApplication.run(HelloWorld1Application.class, args);
}
}
我的服务文件用户服务.Java
package com.example.hello_world;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.AutoConfigurationPackage;
import org.springframework.boot.autoconfigure.domain.EntityScan;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
import org.springframework.stereotype.Component;
import org.springframework.stereotype.Service;
@Service
@EntityScan("com.example.hello_world")
@ComponentScan("com.example.hello_world")
public class UserService {
@Autowired
private UserRepository repo;
public List<UserInfo> listAll()
{
return repo.findAll();
}
public void save(UserInfo User)
{
repo.save(User);
}
public UserInfo get(Long id)
{
return repo.findById(id).get();
}
public void delete(Long id)
{
repo.deleteById(id);
}
}
我的存储库文件UserRepository.jav
package com.example.hello_world;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.AutoConfigurationPackage;
import org.springframework.boot.autoconfigure.domain.EntityScan;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
import org.springframework.stereotype.Component;
import org.springframework.stereotype.Service;
@Service
@EntityScan("com.example.hello_world")
@ComponentScan("com.example.hello_world")
public class UserService {
@Autowired
private UserRepository repo;
public List<UserInfo> listAll()
{
return repo.findAll();
}
public void save(UserInfo User)
{
repo.save(User);
}
public UserInfo get(Long id)
{
return repo.findById(id).get();
}
public void delete(Long id)
{
repo.deleteById(id);
}
}
我的 Controller 文件应用程序 Controller .java
package com.example.hello_world;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import java.util.List;
import org.springframework.ui.*;
@Controller
public class AppController
{
@Autowired
private UserService service;
@RequestMapping("/")
public String ViewHomePage(Model model)
{
List<UserInfo> listUserInfo = service.listAll();
model.addAttribute("listUserInfo", listUserInfo);
return "index";
}
}
最佳答案
恐怕你做事的方式不太好。
您想要一个带有 Controller 和存储库的 Spring Boot 应用程序。对于 Controller ,您的配置似乎没问题,但对于存储库,则不然。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
如果不这样做,那么您最终将丢失某些必需的 bean,例如 entityManagerFactoryBean
。事实上,启动依赖项是为了加载一堆 AutoConfiguration 类,以及一个用于配置 entityManagerFactoryBean
的类。
这是我向您推荐的 POM:
<?xml version="1.0" encoding="UTF-8"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.4.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>hello_world-1</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>hello_world-1</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
尝试一下,让我知道结果。
关于java - 在您的配置中定义 'bean' 、 "Consider defining a bean named 'EntityManagerFactory' 时遇到麻烦”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60130157/
我在我的项目中运行 pylint 进行错误检测,并偶然发现了这个警告。 我该如何解决这个警告? 最佳答案 假设您正在打开一个文件: file_handle = open("some_file.txt"
我们都知道 Jquery 有很多好处。如果您在企业中使用过Jquery,您的“学习”经历是什么?; 为了改进和利用 Jquery 的优势,需要考虑向后兼容性、与现有 javascript 的冲突、CS
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 4 年前。 Improve
我想用 div 模拟表格的行为。 我的布局结构分为三列: div#wrapper { width:800px; float:left; height:100%; margin-top:
给定一家软件公司,开发人员团队合作处理多个问题不同的项目。项目需要分配的特定技能开发商。出于我的目的,我想保持简单并将其限制为一个技能,即编程语言。所以有些项目需要Java,有些需要C 等 项目有固定
我正在使用两个函数 sprintf 和 snprintf 来处理“double”到字符串的转换,在其中一种情况下,正在运行的应用程序的语言环境与 Windows 的语言环境不同。因此,在这种情况下,s
我正在尝试实现一个 LocaleListener 来检测用户的首选语言(考虑 Accept-Language header )并将其存储在 session 中以避免每次请求都检查它。我开发了下面的代码
我正在尝试运行如下查询: MATCH (n:Type1)-[:relation1]->(:Type1)(:Type1)(:Type1)(:Type1)<-[:relation2]-(:Type2) W
嗨,我想知道在 JSP 中使用循环的行为 在foreach周围,集合的每个值都在内部 它显示四行还是三行?它是否每次都考虑相同的值(例如“1”)? 1 1 2 3 或 1 2 3
这里是 Rust 新手。当提供一个参数并在函数声明中将其保留为未使用时(例如,在学习 Rust 时...),编译器会警告该变量在范围内未使用的事实,并建议考虑在其前加下划线。这样做,警告就会消失。 w
同时关注 rustbyexample.com教程中,我输入了以下代码: impl fmt::Display for Structure { fn fmt(&self, f: &mut fmt:
以 void * 和其他指针类型作为参数的 C++ 多态函数:它是否被认为是有歧义的? 我担心,因为任何指针都可以转换为 void*,下面的 bar 的第二次调用是否会执行 void bar(void
所以我有一个程序可以在一行中从用户那里获取数字,例如: 2 1 2 3 4 第一个数字:2表示输出应该是2行2列的矩阵: 1 2 3 4 这就是我填充数组的方式: int dim; scanf("%d
我想在我的博客上做一些类似于 gmail 的“考虑包括” 建议的事情,但带有标签。 我正在考虑像这样存储标签集: 我想到了以下算法: //a blog post is published //it h
我想看看 stackoverflow 是否使用单独的插件来执行那些亮黄色的弹出窗口,上面写着“请考虑将此答案标记为已接受 或“请考虑添加评论以说明您为什么投了反对票” 这是为此使用了一个 jquery
我尝试构建 a pure CSS tree .我遇到了 block 之间水平线的问题(两个 block 在同一层)。我在以下 jsfiddles 中隔离了问题: https://jsfiddle.ne
我正在准备 Django 中的测试或测验。测验需要在一定的时间范围内完成。说 40 题 30 分钟。我总是可以在测试开始时启动时钟,然后在测验完成时计算时间。然而,在尝试过程中,可能会出现互联网连接中
在MSDN ,我找到了这句话: The result of a ?? operator is not considered to be a constant even if both its argu
我有一个项目,我启用了新的 Nullable reference type feature enable 现在让我们考虑这段代码 public class Foo { } var foo =
我正在编写一个应该可缓存的 Webpack 加载器。 documentation for this.cacheable说: A cacheable loader must have a determi
我是一名优秀的程序员,十分优秀!