Skip to content

Instantly share code, notes, and snippets.

@Roshanmutha
Created October 19, 2015 09:37
Show Gist options
  • Select an option

  • Save Roshanmutha/2c0f03fd2d48f43d0a2c to your computer and use it in GitHub Desktop.

Select an option

Save Roshanmutha/2c0f03fd2d48f43d0a2c to your computer and use it in GitHub Desktop.

Revisions

  1. Roshanmutha created this gist Oct 19, 2015.
    9 changes: 9 additions & 0 deletions DefaultController.java
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    @Controller
    public class DefaultController {

    @RequestMapping(value = "/", method = RequestMethod.GET)
    public String index() {
    return "redirect:transaction/newTransaction";
    }

    }