- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在 Spring 查找存储库时遇到问题,在 Spring 应用程序停止并抛出另一个异常之前,日志中会抛出此警告:
抛出错误之前发出警告:
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'UserREST': Unsatisfied dependency expressed through field 'userRepository'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.mycom.mobile.respository.userRepository' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true), @org.springframework.beans.factory.annotation.Qualifier(value=userRepository)}
Spring 应用程序停止时抛出错误:
***************************
APPLICATION FAILED TO START
***************************
Description:
Field userRepository in com.mycom.mobile.controller.UserREST required a bean of type 'com.mycom.mobile.respository.UserRepository' that could not be found.
Action:
Consider defining a bean of type 'com.mycom.mobile.respository.userRepository' in your configuration.
实体
package "com.mycom.mobile.model";
Entity
@Table(name="users")
public class User implements Serializable {
private static final long serialVersionUID = -3009157732242241606L;
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
private long id;
@Column(name="userName")
private String userName;
@Column(name="userLevel")
private String userLevel;
@Column(name="userCountry")
private String userCountry;
protected User(){
}
public User(String userName, String userLevel, String userCountry){
this.userName = userName;
this.userLevel = userLevel;
this.userCountry = userCountry;
}
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public long getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName= userName;
}
public long getUserLevel() {
return this.userLevel;
}
public void setUserLevel(String userLevel) {
this.userLevel= userLevel;
}
public long getUserCountry() {
return this.userCountry;
}
public void setUserCountry(String userCountry) {
this.userLevel= userCountry;
}
}
存储库
package "com.mycom.mobile.repository";
@Repository
public interface UserRepository extends CrudRepository<User, Long> {
}
Controller
package "com.mycom.mobile.controller";
@RestController
@CrossOrigin(origins = "*")
@RequestMapping(value = "v1/api")
public class UserREST {
@Autowired
//@Qualifier("userRepository")
private UserRepository userRepository;
private Logger logger = Logger.getLogger(this.getClass());
UserREST() {
}
@RequestMapping(value = "add", method = RequestMethod.POST)
public ResponseEntity<Object> addUser(@RequestBody User user) {
userRepository.save(user);
List<User> users = Lists.newArrayList(userRepository.findAll());
return new ResponseEntity<Object>(users, HttpStatus.OK);
}
}
主 Spring 应用
package "com.mycom.mobile.UserService";
@SpringBootApplication()
// Search for any controllers that can be found under the below package ..
@ComponentScan(basePackages={"com.mycom.mobile"})
@EnableJpaRepositories(basePackages={"com.mycom.mobile.repository"})
@EntityScan(basePackages= {"com.mycom.mobile.model"})
public class UserServiceApplication {
public static void main(String[] args) {
SpringApplication.run(UserServiceApplication.class, args);
}
public static String getRootPath() {
File file = new java.io.File(".");
try {
return file.getCanonicalPath();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return "";
}
}
当我从这里读到时,尝试解决它但仍然遇到同样的问题: http://www.baeldung.com/spring-nosuchbeandefinitionexception#cause-2
尝试添加@Qualifier注释但没有成功。
您能否告诉我我在这里做错了什么,或者为什么即使我在应用程序的配置中定义了存储库也找不到存储库?
编辑:我已尝试以下链接中的答案,但仍然面临问题:
No qualifying bean of type found for dependency in Spring Boot single table
最佳答案
您可能需要在 UserREST
类中为 userRepository
添加 setter。
关于java - "org.springframework.beans.factory.UnsatisfiedDependencyException"的原因是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49238298/
刚开始处理Maven和Spring。当我尝试创建DAO和ResultSet然后运行应用程序时,抛出errors: Error:(4, 31) java: package org.springframe
问题: Error:(15, 10) java: cannot find symbol symbol: class SpringRunner Error:(16, 2) java: cannot
我正在尝试构建这个 RESTful 服务示例:https://spring.io/guides/gs/rest-service/GreetingController.java 的导入没有错误: pac
如果我尝试向构造函数注入(inject) Facebook 参数,我将尝试使用 facebook api 使用 spring + thymeleaf + hibernate 创建 Facebook 应
如何解决Spring中Bean的自动连接歧义?我们有一个 Dessert 接口(interface),并且有实现该接口(interface)(Dessert)的三种不同的甜点(Bean)。 今天的甜点
请问为什么我的 pom.xml 文件中会出现此错误 Missing artifact org.springframework:spring-context:jar:${org.springframew
让 gradle 构建正常工作( from a previous question related to this one ),安迪·威尔金森(Andy Wilkinson)为我回答,没有问题。正在为
我正在 tomcat 7 中开发网站(spring 3.1.1),但出现错误 ERROR: org.springframework.web.context.ContextLoader - Contex
我在将航类信息保存到 mysql 数据库时遇到错误。请帮助我下面是我的代码: 我已经尝试了所有方法,添加模式和这么多 它不会从字符串转换为日期 控制台日志 2020-05-12 13:19:21.04
我使用intellij创建了一个小型java应用程序,后来我使用“添加框架支持”选项将该项目更新为Maven项目。当我厌倦了在项目上添加 spring jar 文件时,出现以下错误:“没有为 org.
我尝试使用 org.springframework.data.mongodb.core.MongoOperations 从 mongo 集合中查询记录。我在 CompanyTemplRepoImpl
我尝试将 Spring4 与 Hibernate5 一起使用,但出现此错误: org.springframework.orm.jpa.EntityManagerHolder cannot be cas
我是这个论坛的新手。我正在尝试使用 spring 3.2.6 和 tomcat 7.0 制作一个应用程序。我已将所有必需的 jar 添加到 WEB-INF/lib 文件夹中。 DispatcherSe
我在 maven 架构中使用 Spring 框架 4.0.1.RELEASE、OAuth Security 2.0.7.RELEASE,当我编译代码时,出现以下错误。 SEVERE: Exceptio
我正在使用以下指令开发 CRUD Web 应用程序: https://www.javaguides.net/2019/02/spring-boot-2-angular-7-crud-example-t
这个问题已经有答案了: what is the difference in org.springframework.web.servlet.ModelAndView vs org.springfram
我正在尝试将 hibernate 与 spring boot 一起使用。但我收到此错误:org.springframework.orm.jpa.EntityManagerHolder 无法转换为 or
我尝试创建简单的用户登录和注册页面。但我无法使用服务方法创建用户。我有创建新用户的服务。 @Service public class LocalUserDetailsService implement
我用 STS、Roo 和 GWT 创建了一个新项目,并尝试包含 Spring Security。 从那时起,我收到以下错误。有没有人知道出了什么问题?! org.springframework.bea
这些是我正在使用的版本和依赖项 我怀疑版本需要更改但更改为什么,我不确定 springCore : '5.3.3', springjdbc
我是一名优秀的程序员,十分优秀!