aboutsummaryrefslogtreecommitdiff
path: root/juick-spring-www/src/main/java/com/juick/www/controllers/DivideByZeroController.java
blob: 07266adcf12ae3f59aa250ce666366e0949f5d32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 DivideByZeroController {

    @RequestMapping("/divideByZero")
    public String getPage() {
        return "divideByZero";
    }
}