Skip to content

Commit

Permalink
Fix : Minor Updated (#32) (#33)
Browse files Browse the repository at this point in the history
* Fix: Minor Updated
  • Loading branch information
taking authored Oct 14, 2023
1 parent b186d1d commit ee593ca
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions application.properties_docker
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ server.port=8888
#server.error.include-message=always
server.servlet.encoding.charset=UTF-8
server.servlet.encoding.force=true
spring.servlet.multipart.max-file-size=3096MB
spring.servlet.multipart.max-request-size=3096MB
spring.servlet.multipart.enabled=true

# Swagger springdoc-ui Configuration
spring.messages.encoding=UTF-8
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import org.springframework.data.domain.Sort;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
Expand Down Expand Up @@ -99,7 +100,7 @@ public ResponseEntity<?> findAllQsheets(
*
* Author : yby654(yby654@github.com)
*/
@PostMapping("")
@PostMapping(value = "", consumes = {MediaType.APPLICATION_JSON_VALUE, MediaType.MULTIPART_FORM_DATA_VALUE, MediaType.APPLICATION_OCTET_STREAM_VALUE})
@ApiResponses(value = {
@ApiResponse(responseCode = "200", description = "큐시트 생성이 완료되었습니다.", content = @Content(schema = @Schema(implementation = ResponseEntity.class))),
@ApiResponse(responseCode = "400", description = "입력 값이 잘못 되었습니다.", content = @Content(schema = @Schema(implementation = ErrorResponse.class))),
Expand Down
3 changes: 3 additions & 0 deletions nw/src/main/resources/application.properties_sample
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ server.port=8888
#server.error.include-message=always
server.servlet.encoding.charset=UTF-8
server.servlet.encoding.force=true
spring.servlet.multipart.max-file-size=3096MB
spring.servlet.multipart.max-request-size=3096MB
spring.servlet.multipart.enabled=true

# Swagger springdoc-ui Configuration
spring.messages.encoding=UTF-8
Expand Down

0 comments on commit ee593ca

Please sign in to comment.