misFortune.html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
</body>
</html>
greatFortune.html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>占い</title>
</head>
<body>
<h1>ラッキー</h1>
</body>
</html>
package com.example.demo;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class Fortune {
@RequestMapping("/fortune")
public String start() {
double fn = Math.random();
if (fn >= 0.7) {
return "greatFortune.html";
} else {
return "misFortune.html";
}
}
}