У меня есть приложение весенней загрузки, в котором я хочу запустить приложение со страницей Start.jsp.Стартовая страница не может не загружаться.это находится в папке ресурсов / шаблонов.
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<form id="messageForm" action="sendMessage" method="post">
<div>Personal Information</div>
<div>
<!-- Name attribute of fields is the same as the corresponding Java class-->
<label>Name</label> <input name="name" value="" type="text">
</div>
<div>Message Details</div>
<div>
<label>To number</label> <input name="toNumber" value="" type="text">
<label>From number</label> <input name="fromNumber" value="" type="text">
<label>Message Body</label> <input name="messageBody" value="" type="text">
</div>
<div>
<button id="submitButton" type="submit">Send Message</button>
</form>
</body>
</html>
контроллер выглядит следующим образом:
package com.smsService;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
public class WebController {
@RequestMapping(value = "/")
public String index() {
return "Start";
}
@RequestMapping(value = "/sendMessage", method = RequestMethod.POST)
public void sendMessage(Message message){
//code for controller
return ;
}
}
Message.java - это класс сущностей, имена которого совпадают с именами полей в форме.
Ожидаемый результат должен бытьформа, где я могу поместить данные и отправить
Но я получаю ниже ошибка:
Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.
Sun Jan 20 13:41:59 EST 2019
There was an unexpected error (type=Internal Server Error, status=500).
Error resolving template [Start], template might not exist or might not be accessible by any of the configured Template Resolvers
Также, когда я использую HTML-файл, он работает, ноне для файла JSP