gpt4 book ai didi

java - 错误 404 - 使用@RestController 获取请求 - SpringBoot

转载 作者:行者123 更新时间:2023-11-29 04:06:55 25 4
gpt4 key购买 nike

是的,有很多关于它的问题,但每个案例都是独一无二的。

目标是编写一个简单的应用程序来对实体 Product 进行 CRUD 操作,使用:ControllerModelRepository

树:

+- com.teste
+- controller
| +- ProductController.java
+- model
| +- Product.java
+- repository
| +- ProductRepository.java
+- SpringEsApplication.java

ProductController.java

@RestController
//@RequestMapping(value="/product") // When try it, not works too (same error).
public class ProductController {

@Autowired
private ProductRepository productRepository;

@PostMapping("/saveProduct")
public long saveProduct(@RequestBody List<Product> products) {
productRepository.saveAll(products);
return productRepository.count();
}

@GetMapping("/findAllProducts")
public Iterable<Product> findAllProducts() {
return productRepository.findAll();
}

@GetMapping("/findProductByCode")
public List<Product> findProductByCode(@PathVariable String code) {
return productRepository.findByCode(code);
}

}

Product.java

@Document(indexName = "product_index")
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Product {

@Id
private String id;
private String name;
private String code;
private double price;

}

ProductRepository.java

@Repository
public interface ProductRepository extends CrudRepository<Product,String> {

List<Product> findByCode(String code);

}

SpringEsApplication.java

@SpringBootApplication
@ComponentScan(basePackages = {"com.teste.repository"})
public class SpringEsApplication {

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

}

Postman GET 请求

获取请求:

http://localhost:8080/findAllProducts

响应:

{
"timestamp": "2019-09-18T14:10:38.305+0000",
"status": 404,
"error": "Not Found",
"message": "No message available",
"path": "/findAllProducts"
}

即使没有数据,它也应该返回一些东西。

控制台日志开始

 :: Spring Boot ::        (v2.1.8.RELEASE)

2019-09-18 11:16:34.061 INFO 4764 --- [ restartedMain] com.teste.SpringEsApplication : Starting SpringEsApplication on CTDDELL5JVV862 with PID 4764 (started by augusto.cadini in C:\Users\augusto.cadini\Desktop\Spring ElasticSearch projects\spring-es)
2019-09-18 11:16:34.069 INFO 4764 --- [ restartedMain] com.teste.SpringEsApplication : No active profile set, falling back to default profiles: default
2019-09-18 11:16:34.193 INFO 4764 --- [ restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2019-09-18 11:16:34.193 INFO 4764 --- [ restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2019-09-18 11:16:34.774 INFO 4764 --- [ restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data repositories in DEFAULT mode.
2019-09-18 11:16:34.829 INFO 4764 --- [ restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 51ms. Found 2 repository interfaces.
2019-09-18 11:16:35.516 INFO 4764 --- [ restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2019-09-18 11:16:35.544 INFO 4764 --- [ restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2019-09-18 11:16:35.544 INFO 4764 --- [ restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.24]
2019-09-18 11:16:35.671 INFO 4764 --- [ restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2019-09-18 11:16:35.672 INFO 4764 --- [ restartedMain] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 1479 ms
2019-09-18 11:16:35.949 INFO 4764 --- [ restartedMain] o.elasticsearch.plugins.PluginsService : no modules loaded
2019-09-18 11:16:35.950 INFO 4764 --- [ restartedMain] o.elasticsearch.plugins.PluginsService : loaded plugin [org.elasticsearch.index.reindex.ReindexPlugin]
2019-09-18 11:16:35.950 INFO 4764 --- [ restartedMain] o.elasticsearch.plugins.PluginsService : loaded plugin [org.elasticsearch.join.ParentJoinPlugin]
2019-09-18 11:16:35.950 INFO 4764 --- [ restartedMain] o.elasticsearch.plugins.PluginsService : loaded plugin [org.elasticsearch.percolator.PercolatorPlugin]
2019-09-18 11:16:35.950 INFO 4764 --- [ restartedMain] o.elasticsearch.plugins.PluginsService : loaded plugin [org.elasticsearch.script.mustache.MustachePlugin]
2019-09-18 11:16:35.950 INFO 4764 --- [ restartedMain] o.elasticsearch.plugins.PluginsService : loaded plugin [org.elasticsearch.transport.Netty4Plugin]
2019-09-18 11:16:36.901 INFO 4764 --- [ restartedMain] o.s.d.e.c.TransportClientFactoryBean : Adding transport node : 192.168.99.100:9300
2019-09-18 11:16:37.260 INFO 4764 --- [ restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2019-09-18 11:16:37.572 INFO 4764 --- [ restartedMain] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2019-09-18 11:16:37.956 INFO 4764 --- [ restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2019-09-18 11:16:37.957 INFO 4764 --- [ restartedMain] com.teste.SpringEsApplication : Started SpringEsApplication in 4.838 seconds (JVM running for 5.522)

最佳答案

从主类中删除 @ComponentScan(basePackages = {"com.teste.repository"})

您的情况不需要。

当你提供@ComponentScan时,Spring引擎将只扫描你提供的那些包。

@ComponentScan 需要提供包/类的自定义扫描。

关于java - 错误 404 - 使用@RestController 获取请求 - SpringBoot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57994817/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com