无法使用Eclipse调试Web应用程序

时间:2015-07-10 11:38:20

标签: java eclipse debugging tomcat

我已经仔细阅读了几个教程,但我无法开始使用最简单的应用。这是我到目前为止所做的。

我使用Eclipse启动了一个动态Web应用程序,并将其作为Maven项目。

这是项目结构:

enter image description here

My Maven pom是:

<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>HappySchedulerSpring</groupId>
  <artifactId>HappySchedulerSpring</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>war</packaging>
  <build>
    <sourceDirectory>src</sourceDirectory>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.3</version>
        <configuration>
          <source>1.8</source>
          <target>1.8</target>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-war-plugin</artifactId>
        <version>2.6</version>
        <configuration>
          <warSourceDirectory>WebContent</warSourceDirectory>
          <failOnMissingWebXml>false</failOnMissingWebXml>
        </configuration>
      </plugin>
     <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
        <version>1.2.5.RELEASE</version>
    </plugin>
    </plugins>
  </build>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
            <version>1.2.5.RELEASE</version>
        </dependency>
    </dependencies>
        <repositories>
        <repository>
            <id>spring-milestone</id>
            <url>https://repo.spring.io/libs-release</url>
        </repository>
    </repositories>

    <pluginRepositories>
        <pluginRepository>
            <id>spring-milestone</id>
            <url>https://repo.spring.io/libs-release</url>
        </pluginRepository>
    </pluginRepositories>
</project>

Application.java和TweetsController.java也非常基础(直接来自Spring示例

package com.pistacchioso.happyscheduler;

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

@SpringBootApplication
public class Application {

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

}

和控制器:

package com.pistacchioso.happyscheduler;

import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;

@Controller
@EnableAutoConfiguration
public class TweetsController {

    @RequestMapping("/greeting")
    public String greeting(@RequestParam(value="name", required=false, defaultValue="World") String name, Model model) {
        model.addAttribute("name", name);
        return "HappyScheduler";
    }

}

.jsp文件中没有任何特殊内容:

<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <title>Getting Started: Serving Web Content</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
    <p th:text="'Hello, ' + ${name} + '!'" />
</body>
</html>

当我单击调试图标时,Eclipse让我选择Tomcat 8,没有给出错误,正确解析了依赖关系并启动了服务器,但http:localhost:8080/greeting一直给我404。

任何帮助?

2 个答案:

答案 0 :(得分:0)

首先引起我注意的是控制器中的@EnableAutoConfiguration。在您的案例Application中,此批注旨在放在配置类上。

但是,由于您使用的是@SpringBootApplication,因此您不需要它。这是一个方便的注释,假设包括自动配置在内的几个方面。

尝试从控制器中删除@EnableAutoConfiguration。

此外,您还可以找到与您的here

类似的示例

答案 1 :(得分:0)

第一个春季启动内嵌嵌入式tomcat,因此我们可以将其打包为jar并直接运行jar

mvn spring-boot:run 

或使用java

java -jar target/SpringBootApplication.jar

当我们使用jar文件打包时,WebApp文件夹将被忽略。所以html文件需要放在src / main / resources / templates文件夹中。

我已在本地桌面上实现并获得了结果

enter image description here

pom文件供您参考 - http://txs.io/jw6b