错误:在postman java springboot中连接ESPRING REFUSED 127.0.0.1:8080

iqjalb3h  于 2024-01-05  发布在  Java
关注(0)|答案(1)|浏览(183)

我运行后的应用程序正常运行没有错误,但在我尝试使用Postman它出现错误:连接EAMPLIFUSED 127.0.0.1:8080.在我的applicationProperties服务器端口设置为8080,XAMPP已打开,但仍然是一个错误.我已经尝试删除Postman和XAMPP并重新安装它们,但我仍然得到相同的错误.

  1. POST http://localhost:8080/api/product-categories
  2. Error: connect ECONNREFUSED 127.0.0.1:8080
  3. Request Headers
  4. Content-Type: application/json
  5. User-Agent: PostmanRuntime/7.36.0
  6. Accept: */*
  7. Cache-Control: no-cache
  8. Postman-Token: 28c3391d-ae3f-4031-aa24-d43ecd2e2bf4
  9. Host: localhost:8080
  10. Accept-Encoding: gzip, deflate, br
  11. Connection: keep-alive
  12. Request Body

x

  1. server.port=8080
  2. spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
  3. spring.datasource.url=jdbc:mysql://localhost:3306/kadaiden
  4. spring.datasource.username=root
  5. spring.datasource.password=
  6. spring.jpa.hibernate.ddl-auto=update
  7. spring.jpa.show-sql=true
  1. [INFO] Scanning for projects...
  2. [INFO]
  3. [INFO] ---------------------< com.santiang:demo-kadaiden >---------------------
  4. [INFO] Building demo-kadaiden 0.0.1-SNAPSHOT
  5. [INFO] --------------------------------[ jar ]---------------------------------
  6. [INFO]
  7. [INFO] >>> spring-boot-maven-plugin:3.2.1:run (default-cli) > test-compile @ demo-kadaiden >>>
  8. [INFO]
  9. [INFO] --- maven-resources-plugin:3.3.1:resources (default-resources) @ demo-kadaiden ---
  10. [INFO] Copying 1 resource from src\main\resources to target\classes
  11. [INFO] Copying 0 resource from src\main\resources to target\classes
  12. [INFO]
  13. [INFO] --- maven-compiler-plugin:3.11.0:compile (default-compile) @ demo-kadaiden ---
  14. [INFO] Nothing to compile - all classes are up to date
  15. [INFO]
  16. [INFO] --- maven-resources-plugin:3.3.1:testResources (default-testResources) @ demo-kadaiden ---
  17. [INFO] skip non existing resourceDirectory D:\Air\Latihan Spring Boot\demo-kadaiden\src\test\resources
  18. [INFO]
  19. [INFO] --- maven-compiler-plugin:3.11.0:testCompile (default-testCompile) @ demo-kadaiden ---
  20. [INFO] Nothing to compile - all classes are up to date
  21. [INFO]
  22. [INFO] <<< spring-boot-maven-plugin:3.2.1:run (default-cli) < test-compile @ demo-kadaiden <<<
  23. [INFO]
  24. [INFO]
  25. [INFO] --- spring-boot-maven-plugin:3.2.1:run (default-cli) @ demo-kadaiden ---
  26. [INFO] Attaching agents: []
  27. . ____ _ __ _ _
  28. /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
  29. ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
  30. \\/ ___)| |_)| | | | | || (_| | ) ) ) )
  31. ' |____| .__|_| |_|_| |_\__, | / / / /
  32. =========|_|==============|___/=/_/_/_/
  33. :: Spring Boot :: (v3.2.1)
  34. 2023-12-31T14:02:42.030+07:00 INFO 9648 --- [ restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port 8080 (http)
  35. 2023-12-31T14:02:42.043+07:00 INFO 9648 --- [ restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  36. 2023-12-31T14:02:42.043+07:00 INFO 9648 --- [ restartedMain] o.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/10.1.17]
  37. 2023-12-31T14:02:42.103+07:00 INFO 9648 --- [ restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  38. 2023-12-31T14:02:42.105+07:00 INFO 9648 --- [ restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1423 ms
  39. 2023-12-31T14:02:42.244+07:00 INFO 9648 --- [ restartedMain] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
  40. 2023-12-31T14:02:42.306+07:00 INFO 9648 --- [ restartedMain] org.hibernate.Version : HHH000412: Hibernate ORM core version 6.4.1.Final
  41. 2023-12-31T14:02:43.859+07:00 WARN 9648 --- [ restartedMain] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling
  42. refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'productCategoryMasterController' defined in file [D:\Air\
  43. Latihan Spring Boot\demo-kadaiden\target\classes\com\santiang\demokadaiden\controller\ProductCategoryMasterController.class]: Unsatisfied dependency expressed through cons
  44. tructor parameter 0: Error creating bean with name 'productCategoryMasterImpl' defined in file [D:\Air\Latihan Spring Boot\demo-kadaiden\target\classes\com\santiang\demoka
  45. daiden\service\impl\ProductCategoryMasterImpl.class]: Unsatisfied dependency expressed through constructor parameter 0: Error creating bean with name 'productCategoryRepos
  46. itory' defined in com.santiang.demokadaiden.repository.ProductCategoryRepository defined in @EnableJpaRepositories declared on JpaRepositoriesRegistrar.EnableJpaRepositori
  47. esConfiguration: Could not create query for public abstract java.util.List com.santiang.demokadaiden.repository.ProductCategoryRepository.findAllByOrderName(); Reason: Fai
  48. led to create query for method public abstract java.util.List com.santiang.demokadaiden.repository.ProductCategoryRepository.findAllByOrderName(); No property 'orderName'
  49. found for type 'ProductCategory'
  50. Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled.
  51. 2023-12-31T14:02:43.906+07:00 ERROR 9648 --- [ restartedMain] o.s.boot.SpringApplication : Application run failed
  52. org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'productCategoryMasterController' defined in file [D:\Air\Latihan Spring Bo
  53. ot\demo-kadaiden\target\classes\com\santiang\demokadaiden\controller\ProductCategoryMasterController.class]: Unsatisfied dependency expressed through constructor parameter
  54. 0: Error creating bean with name 'productCategoryMasterImpl' defined in file [D:\Air\Latihan Spring Boot\demo-kadaiden\target\classes\com\santiang\demokadaiden\service\im
  55. pl\ProductCategoryMasterImpl.class]: Unsatisfied dependency expressed through constructor parameter 0: Error creating bean with name 'productCategoryRepository' defined in
  56. com.santiang.demokadaiden.repository.ProductCategoryRepository defined in @EnableJpaRepositories declared on JpaRepositoriesRegistrar.EnableJpaRepositoriesConfiguration:
  57. Could not create query for public abstract java.util.List com.santiang.demokadaiden.repository.ProductCategoryRepository.findAllByOrderName(); Reason: Failed to create que
  58. ry for method public abstract java.util.List com.santiang.demokadaiden.repository.ProductCategoryRepository.findAllByOrderName(); No property 'orderName' found for type 'P
  59. roductCategory'
  60. at ~[spring-boot-devtools-3.2.1.jar:3.2.1]
  61. Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'productCategoryMasterImpl' defined in file [D:\Air\Latihan Spri
  62. ng Boot\demo-kadaiden\target\classes\com\santiang\demokadaiden\service\impl\ProductCategoryMasterImpl.class]: Unsatisfied dependency expressed through constructor paramete
  63. r 0: Error creating bean with name 'productCategoryRepository' defined in com.santiang.demokadaiden.repository.ProductCategoryRepository defined in @EnableJpaRepositories
  64. declared on JpaRepositoriesRegistrar.EnableJpaRepositoriesConfiguration: Could not create query for public abstract java.util.List com.santiang.demokadaiden.repository.Pro
  65. ductCategoryRepository.findAllByOrderName(); Reason: Failed to create query for method public abstract java.util.List com.santiang.demokadaiden.repository.ProductCategoryR
  66. epository.findAllByOrderName(); No property 'orderName' found for type 'ProductCategory'
  67. at
  68. [INFO] ------------------------------------------------------------------------
  69. [INFO] BUILD SUCCESS
  70. [INFO] ------------------------------------------------------------------------
  71. [INFO] Total time: 6.666 s
  72. [INFO] Finished at: 2023-12-31T14:02:44+07:00
  73. [INFO] ------------------------------------------------------------------------
  74. PS D:\Air\Latihan Spring Boot\demo-kadaiden> mvn spring-boot:run
  75. [INFO] Scanning for projects...
  76. [INFO]
  77. [INFO] ---------------------< com.santiang:demo-kadaiden >---------------------
  78. [INFO] Building demo-kadaiden 0.0.1-SNAPSHOT
  79. [INFO] --------------------------------[ jar ]---------------------------------
  80. [INFO]
  81. [INFO] >>> spring-boot-maven-plugin:3.2.1:run (default-cli) > test-compile @ demo-kadaiden >>>
  82. [INFO]
  83. [INFO] --- maven-resources-plugin:3.3.1:resources (default-resources) @ demo-kadaiden ---
  84. [INFO] Copying 1 resource from src\main\resources to target\classes
  85. [INFO] Copying 0 resource from src\main\resources to target\classes
  86. [INFO]
  87. [INFO] --- maven-compiler-plugin:3.11.0:compile (default-compile) @ demo-kadaiden ---
  88. [INFO] Nothing to compile - all classes are up to date
  89. [INFO]
  90. [INFO] --- maven-resources-plugin:3.3.1:testResources (default-testResources) @ demo-kadaiden ---
  91. [INFO] skip non existing resourceDirectory D:\Air\Latihan Spring Boot\demo-kadaiden\src\test\resources
  1. @Entity
  2. @Table(name = "product_category")
  3. @Getter
  4. @Setter
  5. @NoArgsConstructor
  6. @ToString
  7. public class ProductCategory {
  8. @Id
  9. @GeneratedValue(strategy = GenerationType.IDENTITY)
  10. @Column(name = "id")
  11. private Long id;
  12. private String name;
  13. public ProductCategory(Long id, String name) {
  14. this.id = id;
  15. this.name = name;
  16. }
  17. }

的数据

sqserrrh

sqserrrh1#

(当前)阻止Sping Boot 启动的错误是:
创建在com.santiang.demokadaiden.repository中定义的名为“productCategoryRepository”的Bean时出错。在JpaRepositoriesRegistrar上声明的@ EnableJpaRepositories中定义的ProductCategoryRepository。EnableJpaRepositoriesConfiguration:无法为公共抽象java.util.List com.santiang.demokadaiden.repository.ProductCategoryRepository.findAllByOrderName()创建查询;原因:无法为方法public abstract java.util.List com.santiang.demokadaiden.repository.ProductCategoryRepository.findAllByOrderName()创建查询;未找到类型“ProductCategory”的属性“orderName”
问题是ProductCategoryRepository有一个名为findAllByOrderName()的方法,但ProductCategory没有一个名为orderName的属性。它确实有一个属性name,这可能是你需要使用的。所以,为了解决这个问题,将ProductCategoryRepository中的方法定义为findAllByName()

相关问题