This repository was archived by the owner on Oct 10, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
java/com/example/springprojectsteganographytool/controllers Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -264,7 +264,7 @@ public ResponseEntity<List<StegoEncodeResponseDTO>> listAllEncodings() {
264264 */
265265 @ GetMapping (path = "/encodings/{id}" , produces = MediaType .APPLICATION_JSON_VALUE )
266266 public ResponseEntity <StegoEncodeResponseDTO > getById (@ PathVariable ("id" ) UUID id ) {
267- log .info ("In Controller- Getting encoding by ID from DB. " );
267+ log .info ("In Controller- Getting encoding by ID: {}" , id );
268268 return ResponseEntity .ok (steganographyService .getById (id ));
269269 }
270270
@@ -276,7 +276,7 @@ public ResponseEntity<StegoEncodeResponseDTO> getById(@PathVariable("id") UUID i
276276 */
277277 @ DeleteMapping (path = "/encodings/{id}" )
278278 public ResponseEntity <Void > deleteById (@ PathVariable ("id" ) UUID id ) {
279- log .info ("In Controller- Deleting encoding by ID from DB. " );
279+ log .info ("In Controller- Deleting encoding by ID: {}" , id );
280280 steganographyService .deleteById (id );
281281 return ResponseEntity .noContent ().build ();
282282 }
Original file line number Diff line number Diff line change 44 threads :
55 virtual :
66 enabled : true
7+ main :
8+ lazy-initialization : true
79 servlet :
810 multipart :
911 max-file-size : 50MB
@@ -20,7 +22,7 @@ spring:
2022 properties :
2123 hibernate :
2224 format_sql : true
23- dialect : org.hibernate.dialect.MySQL8Dialect
25+ dialect : org.hibernate.dialect.MySQLDialect
2426
2527
2628app :
You can’t perform that action at this time.
0 commit comments