File tree Expand file tree Collapse file tree
docker/docker-sample-app/src
main/java/com/baeldung/docker/app
test/java/com/baeldung/docker/app Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- package com .personal . dockapp ;
1+ package com .baeldung . docker . app ;
22
33import org .springframework .boot .SpringApplication ;
44import org .springframework .boot .autoconfigure .SpringBootApplication ;
55
66@ SpringBootApplication
77public class DockAppApplication {
88
9- public static void main (String [] args ) {
10- SpringApplication .run (DockAppApplication .class , args );
11- }
9+ public static void main (String [] args ) {
10+ SpringApplication .run (DockAppApplication .class , args );
11+ }
1212
1313}
Original file line number Diff line number Diff line change 1- package com .personal . dockapp .endpoint ;
1+ package com .baeldung . docker . app .endpoint ;
22
33import org .springframework .web .bind .annotation .GetMapping ;
44import org .springframework .web .bind .annotation .RestController ;
Original file line number Diff line number Diff line change 1- package com .personal . dockapp ;
1+ package com .baeldung . docker . app ;
22
33import org .junit .jupiter .api .Test ;
44import org .springframework .boot .test .context .SpringBootTest ;
55
66@ SpringBootTest
77class DockAppApplicationUnitTest {
88
9- @ Test
10- void contextLoads () {
11- }
9+ @ Test
10+ void contextLoads () {
11+ }
1212
1313}
You can’t perform that action at this time.
0 commit comments