我想创建雾架构。我在云和客户端服务器应用程序中有2台服务器,其中服务器有点像雾服务器。云服务器用于与数据库通信。问题是当我尝试在我的申请中进行注册时。我想在验证时刻检查用户是否存在于数据库中。当我调用rest方法时,它返回“ 404 null”。
REST控制器,带有检查用户是否存在的方法。当我使用http:// localhost:8081 / user / test调用此方法时,它将返回JSON
{"userID":1,"username":"test","password":"test","events":[]}
UserController.java
@RestController public class UserController { @Autowired private UserRepository userRepository; @RequestMapping(value = "/user/{username}", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity<User> getUserByUsername(@PathVariable("username") String username) { User user = userRepository.findByUsername(username); if (user == null) { return new ResponseEntity<User>(HttpStatus.NOT_FOUND); } return new ResponseEntity<User>(user, HttpStatus.OK); } @RequestMapping(value = "/user/", method = RequestMethod.POST) public ResponseEntity<Void> addUser(@RequestBody User user, UriComponentsBuilder ucBuilder) { userRepository.save(user); HttpHeaders headers = new HttpHeaders(); headers.setLocation(ucBuilder.path("/user/{id}").buildAndExpand(user.getUserID()).toUri()); return new ResponseEntity<Void>(headers, HttpStatus.CREATED); } }
现在,我尝试通过这种方式使该用户进入雾服务器:
public boolean sendRequestIfUserExists(String username) { CloudServer cloudServer = getAvailableServer(); if (cloudServer != null) { ResponseEntity<User> userEntity = restTemplate.getForEntity(cloudServer.getURI() + "/user/" + username, User.class); changeServerStatusToAvailable(cloudServer.getServerName()); HttpStatus status = userEntity.getStatusCode(); if (status == HttpStatus.NOT_FOUND) { SpeechRecognitionApplication.logger.info("User: " + username + "does not exist"); return false; } } return true; }
这行:
ResponseEntity<User> userEntity = restTemplate.getForEntity(cloudServer.getURI() + "/user/" + username, User.class);
引发异常:
org.springframework.web.client.HttpClientErrorException: 404 null at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:94) ~[spring-web-5.0.5.RELEASE.jar:5.0.5.RELEASE] at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:79) ~[spring-web-5.0.5.RELEASE.jar:5.0.5.RELEASE] at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.0.5.RELEASE.jar:5.0.5.RELEASE] at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:775) ~[spring-web-5.0.5.RELEASE.jar:5.0.5.RELEASE] at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:728) ~[spring-web-5.0.5.RELEASE.jar:5.0.5.RELEASE] at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:684) ~[spring-web-5.0.5.RELEASE.jar:5.0.5.RELEASE] at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:359) ~[spring-web-5.0.5.RELEASE.jar:5.0.5.RELEASE] at pl.speechrecognition.services.CloudService.sendRequestIfUserExists(CloudService.java:65) ~[classes/:na] at pl.speechrecognition.controller.IndexController.postRegister(IndexController.java:53) ~[classes/:na] at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na] at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[na:na] at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[na:na] at java.base/java.lang.reflect.Method.invoke(Unknown Source) ~[na:na]
编辑: 最后,我找到了该异常的解决方案。这是因为我在User类中输入了错误的Contructor。
User.java
@JsonIgnoreProperties(ignoreUnknown = true) public class User { private Long userID; private String username; private String password; private List<Event> events; public Long getUserID() { return userID; } public void setUserID(Long userID) { this.userID = userID; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public List<Event> getEvents() { return events; } public void setEvents(List<Event> events) { this.events = events; } public User(String username) { this.username = username; } public User(String username, String password) { this.username = username; this.password = password; } public String toString() { return "Username: " + username; } // Missing constructor public User(Long userID, String username, String password, List<Event> events) { this.userID = userID; this.username = username; this.password = password; this.events = events; } }
但是现在它抛出:
org.springframework.web.client.RestClientException: Error while extracting response for type [class pl.speechrecognition.model.User] and content type [application/json;charset=UTF-8]; nested exception is org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Cannot construct instance of `pl.speechrecognition.model.User` (although at least one Creator exists): cannot deserialize from Object value (no delegate- or property-based Creator); nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot construct instance of `pl.speechrecognition.model.User` (although at least one Creator exists): cannot deserialize from Object value (no delegate- or property-based Creator) at [Source: (PushbackInputStream); line: 1, column: 2] at org.springframework.web.client.HttpMessageConverterExtractor.extractData(HttpMessageConverterExtractor.java:115) ~[spring-web-5.0.5.RELEASE.jar:5.0.5.RELEASE] at org.springframework.web.client.RestTemplate$ResponseEntityResponseExtractor.extractData(RestTemplate.java:1000) ~[spring-web-5.0.5.RELEASE.jar:5.0.5.RELEASE] at org.springframework.web.client.RestTemplate$ResponseEntityResponseExtractor.extractData(RestTemplate.java:983) ~[spring-web-5.0.5.RELEASE.jar:5.0.5.RELEASE] at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:730) ~[spring-web-5.0.5.RELEASE.jar:5.0.5.RELEASE]
终于我找到了解决方案。构造函数存在问题。当我向构造函数添加所有参数时,我发现反序列化JSON的信息Spring还需要零参数构造函数