Skip to content

Instantly share code, notes, and snippets.

@elevenrax
elevenrax / SpringSTSCheatSheet.java
Created December 19, 2017 07:21
Spring STS Cheat Sheet
/**
* Controller Class
* Contains Mappings and HTTP Methods
*/
@RestController
public class TopicController {
@Autowired
private TopicService topicService;