package com.juick.www.controllers; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; /** * Created by aalexeev on 11/21/16. */ @Controller public class SettingsController { @RequestMapping("/settings") public String showSettings() { return "index"; } }