在提交表单网址http://localhost:8080/HomeBankingSystem/login后,最初为http://localhost:8080/signup 这是我的控制器
df = data.frame(col1=c(1,1,2,2,3),col2=c(2,2,2,2,2))
df$col3=NA
df$col3 = ifelse(df$col1==1, df$col2*1.5, df$col3)
df$col3 = ifelse(df$col1==2, df$col2*2.5, df$col3)
df$col3 = ifelse(df$col1==3, df$col2*3.5, df$col3)
public class HomeBankingController {
@Controller
答案 0 :(得分:0)
您缺少上下文路径
在您的登录按钮中添加下一个:
<a href="${pageContext.request.contextPath}/login">Login</a>
[编辑]:
这里答案更具可读性:
<form action="${pageContext.request.contextPath}/login" method="POST">
<button type="submit" class="button button-block"/>Get Started</button>
</form>