Невозможно продолжить отладку - PullRequest
0 голосов
/ 25 марта 2020

Я работаю с проектом весенней загрузки, который занимается атрибутами перенаправления. Я хочу отладить свое приложение, и оно застревает на этом этапе.

2020-03-25 20:28:47.785  INFO 13073 --- [           main] .e.d.SpringRedirectattributesApplication : Starting SpringRedirectattributesApplication on rajgopal with PID 13073 (/home/rajgopal/Spring-Boot/spring-redirectattributes/target/classes started by rajgopal in /home/rajgopal/Spring-Boot/spring-redirectattributes)
2020-03-25 20:28:47.792  INFO 13073 --- [           main] .e.d.SpringRedirectattributesApplication : No active profile set, falling back to default profiles: default

Вот структура моего проекта

enter image description here

Я также предоставляю оставшийся код

SpringRedirectattributesApplication. java

package com.example.demo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class SpringRedirectattributesApplication {

    public static void main(String[] args) {
        SpringApplication.run(SpringRedirectattributesApplication.class, args);
    }

}

WebConfig. java

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.ViewResolver;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import org.springframework.web.servlet.view.InternalResourceViewResolver;
import org.springframework.web.servlet.view.JstlView;

@EnableWebMvc
@ComponentScan(basePackages = { "com.example.demo.controller" })
@Configuration
public class WebConfig implements WebMvcConfigurer {

        @Bean
        public ViewResolver viewResolver() {
            final InternalResourceViewResolver bean = new InternalResourceViewResolver();
            bean.setViewClass(JstlView.class);
            bean.setPrefix("/WEB-INF/view/");
            bean.setSuffix(".jsp");
            return bean;
        }

}

RedirectAttributesExample. java

import java.util.Map;

import javax.servlet.http.HttpServletRequest;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
import org.springframework.web.servlet.support.RequestContextUtils;
import org.springframework.web.servlet.view.RedirectView;

@Controller
public class RedirectAttributesExample {

    @GetMapping("/redirect")
    public RedirectView redirectWithRedirectAttributes(RedirectAttributes attributes) {

        attributes.addFlashAttribute("flashAttribute", "redirectWithRedirectAttributes");
        attributes.addAttribute("attribute", "redirectWithRedirectAttributes");
        return new RedirectView("redirectedUrl");
    }

    @GetMapping("/redirectedUrl")
    public ModelAndView redirection(ModelMap model, HttpServletRequest request) {

        String some = null, some1 = null;
        Map<String, ?> inputFlashMap = RequestContextUtils.getInputFlashMap(request);
        if (inputFlashMap != null) {
            some = (String) inputFlashMap.get("flashAttribute");
        }
        some1 = (String) ((Model) model).asMap().get("attribute");
        model.addAttribute("redirectionAttribute", some);
        model.addAttribute("redirectionAttribute1", some1);
        return new ModelAndView("redirection", model);
    }
}

перенаправление. jsp

<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
<html>
<head>
<title>Spring MVC Form Handling</title>
</head>
<body>

    <h2>Submitted  Information</h2>
    <h3></h3>
    <table>
        <tr>
            <td>1. ${redirectionAttribute}</td>
        </tr>
        <tr>
            <td>2. ${redirectionAttribute1}</td>
        </tr>

    </table>
</body>
</html>

pom. xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.2.5.RELEASE</version>
        <relativePath /> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.baeldung.redirectattributes</groupId>
    <artifactId>spring-redirectattributes</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>spring-redirectattributes</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-jasper</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.junit.vintage</groupId>
                    <artifactId>junit-vintage-engine</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

Может ли кто-нибудь помочь мне продолжить отладку приложения. Я получаю сообщение об отказе в соединении при достижении этой конечной точки во время отладки.

Я отлаживал приложение, чтобы проверить содержимое some1 переменной

http://localhost: 8081 / перенаправление

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...