-
``` java
@RequestMapping
public void someMethod() throws ResourceNotFoundException {...}
@ExceptionHandler(ResourceNotFoundException)
@ResponseStatus(HttpStatus.NOT_FOUND)
void throw…
-
Thank you for such a great project!
**Describe the bug**
Using a http HEAD method with an expected status code always returns a down result, with no status code returned in the issue. It appears t…
-
{
"type":"http://httpstatus.es/400",
"title":"Bad Request",
"status":400,
"detail":"Unexpected character % in position 0, expected '['"
}
-
I am running into this issue on WireMock 2.32.0 and it was causing tests to fail where I verify that retry logic is working properly.
When stubbing an endpoint and injecting a fault, the verify co…
-
기존에 올라온 질문이 아닌지 먼저 검색해주세요!
## 가장 자주 나온 제보
* [P.105 @PutMapping("/api/v1/posts")](https://github.com/jojoldu/freelec-springboot2-webservice/issues/6)
* [P.111 Posts.update](https://github.com/jo…
-
I currently have everything as just a number by itself (eg 400, 403, 401...)
This is bad. See https://en.wikipedia.org/wiki/Magic_number_(programming)
I have already begun refactoring it by using …
-
If occure exception in source adapter,should return error(500) .In RhoconnectController.java is always return HttpStatus.OK.
-
Devolver un ResponseEntity sin el tipo genérico huele mal en general.
Revisando la API, en algunos sitios no se cumple el contrato que especifica el método. Ejemplo:
```java
@ApiOperation("Get a …
-
## 발생상황
- ExceptionHandler 메서드에서 응답을 반환하도록 코드를 작성했는데 발생
```Java
@ExceptionHandler(InvalidPasswordException.class)
public ResponseEntity invalidPasswordException(InvalidPasswordException e) {
…
-
### Expected Behavior
OPTIONS preflight request should not fail
### Actual Behaviour
OPTIONS preflight request fails
### Steps To Reproduce
1) Enable cors on micronaut application using…