gpt4 book ai didi

java - 出现错误 : The type java. util.Map$Entry 无法解决。它是从必需的间接引用的

转载 作者:太空宇宙 更新时间:2023-11-04 12:55:16 28 4
gpt4 key购买 nike

我正在学习 Java Web 应用程序。当我尝试一个例子时,我收到错误

The type java.util.Map$Entry cannot be resolved. It is indirectly referenced from required .class files

我的代码:

package com.tutorialspoint;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.ui.ModelMap;

@Controller
@RequestMapping("/hello")
public class HelloController {

@RequestMapping(method = RequestMethod.GET)
public String printHello(ModelMap model){
model.addAttribute("message", "Hello Spring MVC Framework!");
return "hello";
}
}

我指的是:http://www.tutorialspoint.com/spring/spring_mvc_hello_world_example.htm

请指导我解决此问题。

最佳答案

您的 Eclipse IDE 似乎不支持 Java 8。您最好将 Eclipse 升级到支持 Java 8 的 Luna。请参阅此 https://www.eclipse.org/community/eclipse_newsletter/2014/june/article1.php

关于java - 出现错误 : The type java. util.Map$Entry 无法解决。它是从必需的间接引用的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35448647/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com