博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
第一个spring boot 程序
阅读量:4984 次
发布时间:2019-06-12

本文共 827 字,大约阅读时间需要 2 分钟。

安装、运行、预览省略

 

错误1:8080端口被IIS占用,关闭它

Description:

The Tomcat connector configured to listen on port 8080 failed to start. The port

may already be in use or the connector may be misconfigured.

Action:

Verify the connector's configuration, identify and stop any process that's liste

ning on port 8080, or configure this application to listen on another port.

 

http://localhost:8080/d.do

HelloWorld.grovy

@RestController

class HelloWorld {
@RequestMapping("/d.do")
String hello() {
"Hello JournalDev World."
}
}

("/d.do")去掉d.do可以用http://localhost:8080访问;路径不对会报下列错误

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Sat Mar 10 15:57:04 CST 2018
There was an unexpected error (type=Not Found, status=404).
No message available

转载于:https://www.cnblogs.com/w2017/p/8540547.html

你可能感兴趣的文章
华为双系统手机可以刷成单系统_华为手机双系统,1部手机能当2部用,打开3秒就能切换,真厉害...
查看>>
adb查看topactivity_使用adb shell dumpsys检测Android的Activity任务栈
查看>>
ext grid新增时默认值_HTMLCSS学习笔记(二十三)-- GRID布局
查看>>
重置mysql数据库_如何重置mysql数据库
查看>>
mysql安装目录utf8_彻底解决MySql在UTF8字符集下乱码问题
查看>>
mysql缺失关键字_ORA-00928: 缺失 SELECT 关键字
查看>>
mysql sp cursoropen_三个重要的游标sp_cursoropen
查看>>
mysql javadbaccess_【转】Java连接Mysql,SQL Server, Access,Oracle
查看>>
mysql项目案例电影_mysql数据库实战之优酷项目
查看>>
python excel数据框_python-将excel中的某些列读取到数据框
查看>>
linux page结构定义,page结构体,何处安放你的灵魂?
查看>>
c语言tempfile错误,C语言文件问题
查看>>
c语言打印格式大全,C语言printf()输出格式大全
查看>>
c语言删增,C语言中初始、增加和删除进程信号的操作方法简介
查看>>
c语言中sam的用法,C-SAM基本操作手册及了解.pdf
查看>>
android城市二级选择器,Android城市选择器源码实现
查看>>
android监听wifi状态广播,android广播监控wifi连接状态
查看>>
华为承认没有鸿蒙,不超过300年!任正非公开承认:华为鸿蒙短期无法超越安卓苹果...
查看>>
鸿蒙狙击谷歌,谷歌开放新操作系统Fuchsia,网友:这是要狙击华为鸿蒙系统呀...
查看>>
android手机登录界面代码,Android登录界面的实现代码分享
查看>>