Ошибка при загрузке приложения Spring-boot - PullRequest
0 голосов
/ 07 июня 2019

Что ж, я разрабатываю приложение весенней загрузки, выбрав технологию представления jsp. Но когда я пытаюсь выполнить начальную загрузку приложения весенней загрузки, я получаю страницу об ошибке уровня белого.

Класс модели

public class Person {

    private String p_first_name;
    private String p_last_name;
    private int age;
    private String city;
    private String state;
    private String country;

    public Person(String p_first_name, String p_last_name, int age, String city, String state, String country) {
        super();
        this.p_first_name = p_first_name;
        this.p_last_name = p_last_name;
        this.age = age;
        this.city = city;
        this.state = state;
        this.country = country;
    }

    public Person() {
        super();
        // TODO Auto-generated constructor stub
    }

    public String getP_first_name() {
        return p_first_name;
    }

    public void setP_first_name(String p_first_name) {
        this.p_first_name = p_first_name;
    }

    public String getP_last_name() {
        return p_last_name;
    }

    public void setP_last_name(String p_last_name) {
        this.p_last_name = p_last_name;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }

    public String getCity() {
        return city;
    }

    public void setCity(String city) {
        this.city = city;
    }

    public String getState() {
        return state;
    }

    public void setState(String state) {
        this.state = state;
    }

    public String getCountry() {
        return country;
    }

    public void setCountry(String country) {
        this.country = country;
    }

}

Класс контроллера

@Controller
public class PersonController {

    private static ArrayList<Person> persons = new ArrayList<Person>();

    static {
        persons.add(new Person("kumar", "bikash", 28, "bangalore", "karnataka", "india"));
        persons.add(new Person("kumar", "pratap", 24, "delhi", "delhi", "india"));
        persons.add(new Person("kumar", "ravi", 29, "delhi", "delhi", "india"));
        persons.add(new Person("kumar", "mangalam", 65, "delhi", "delhi", "india"));
    }

    @RequestMapping(value = { "/", "/index" }, method = RequestMethod.GET)
    public String index(Model model) {
        String message = "Hello" + "Spring Boot implementation with jsp Page";
        model.addAttribute("message", message);
        return "index";
    }

    @RequestMapping(value = "/personList", method = RequestMethod.GET)
    public String getPersonList(Model model) {
        model.addAttribute("persons", persons);
        return "personList";

    }
}

application.properties

# VIEW RESOLVER CONFIGURATION
spring.mvc.view.prefix=/WEB-INF/jsp
spring.mvc.view.suffix=.jsp

jsp файл

index.jsp
=========
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Integration of Spring Boot with jsp page</title>
</head>
<body>
    <h1>Welcome to Spring boot</h1>
    <p>This project is an Example of how to integrate Spring Boot with
        jsp page.</p>
        <h2>${message} </h2>

        <a href="${pageContext.request.ContextPath}/personList"></a>
</body>
</html>

personList.jsp
==============
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Person List content Present here</title>
</head>
<body>
    <h1>Person List</h1>

    <div>
        <table border="1">
            <tr>
                <th>FirstName:</th>
                <th>LasttName:</th>
                <th>Age:</th>
                <th>city:</th>
                <th>State:</th>
                <th>Country:</th>
            </tr>
            <c:forEach items="${persons}" var=person>
                <tr>
                    <td>${person.firstname}</td>
                    <td>${person.lastname}</td>
                    <td>${person.age }</td>
                    <td>${person.city }</td>
                    <td>${person.state }</td>
                    <td>${person.country }</td>
                </tr>
            </c:forEach>
        </table>
    </div>
</body>
</html>

Страница ошибки

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.
Fri Jun 07 23:41:57 IST 2019
There was an unexpected error (type=Not Found, status=404).
No message available

ну, пожалуйста, просмотрите приведенный ниже код. Помогите мне разобраться, где я ошибаюсь?

Ответы [ 2 ]

0 голосов
/ 08 июня 2019

1) Я бы предложил попробовать аннотацию @RestController, чтобы убедиться, что вы получите хотя бы ответ JSON. (только для отладки)

2) После выяснения первой части вы можете вернуться к аннотации @Controller и убедиться, что string вы вернетев метод сопоставления запросов доступен в виде файла jsp.Я бы порекомендовал сначала попробовать с одной конечной точкой ("/") и иметь для нее соответствующую страницу jsp.

3) Если это все еще вызывает ту же проблему, вы можете обратиться к этому сообщению

Spring Boot JSP 404.Whitelabel Error Page

4)Вы также можете отключить и настроить страницу ошибок по умолчанию, перейдя по этой ссылке https://www.baeldung.com/spring-boot-custom-error-page

0 голосов
/ 07 июня 2019

Вы хотите включить собственную страницу ошибок, отключив страницу ошибок уровня белого? Может быть, это может помочь вам.

Если вы не укажете какую-либо пользовательскую реализацию в конфигурации, Компонент BasicErrorController автоматически регистрируется в Spring Boot. Вы можете добавить свою реализацию ErrorController.

@Controller
public class MyErrorController implements ErrorController  {

    @RequestMapping("/error")
    public String handleError() {
        //do something like logging
        return "error";
    }

    @Override
    public String getErrorPath() {
        return "/error";
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...