Spring annotations article (#4232)

* Spring annotations

* commented VehicleFactoryApplication to fix CI build
This commit is contained in:
fanatixan
2018-05-12 22:43:12 +02:00
committed by maibin
parent 5c4fe46ea2
commit 506962bc96
16 changed files with 301 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package com.baeldung.annotations;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class VehicleRestController {
}