博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
微服务-eclipse
阅读量:5771 次
发布时间:2019-06-18

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

1.官网下载Spring Boot项目 2.更新maven,下载必须的依赖 问题:发现pom报错,parent那里有问题。 解决:关掉代理,maven重新update,正常下载jar。 3.java run启动DemoApplication报错

@SpringBootApplicationpublic class DemoApplication {		public static void main(String[] args) {		SpringApplication.run(DemoApplication.class, args);	}}复制代码

报错:

Whitelabel Error PageThis application has no explicit mapping for /error, so you are seeing this as a fallback.Wed Feb 27 17:56:02 CST 2019There was an unexpected error (type=Not Found, status=404).No message available复制代码

解决:

添加依赖如下

org.springframework.boot
spring-boot-starter-web
复制代码

第一种:新建controller

package com.example.demo;import org.springframework.web.bind.annotation.PathVariable;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.ResponseBody;import org.springframework.web.bind.annotation.RestController;@RestControllerpublic class TestController {	@RequestMapping("getName/{name}")	@ResponseBody	public String getName(@PathVariable String name){		if(name==null){			name="null";		}		return "hello miky"+name;	}}复制代码

浏览器输入: 显示如下:

hello mikyhaha

第二种:添加资源,如html页面。 在resources下新建static包,然后浏览器输入地址:

)

转载于:https://juejin.im/post/5c765e40f265da2dae5131e8

你可能感兴趣的文章
haproxy mysql实例配置
查看>>
强化学习的未来— 第一部分
查看>>
TableStore:用户画像数据的存储和查询利器
查看>>
2019 DockerCon 大会即将召开,快来制定您的专属议程吧!
查看>>
15分钟构建超低成本数据大屏:DataV + DLA
查看>>
jSearch(聚搜) 1.0.0 终于来了
查看>>
盘点2018云计算市场,变化大于需求?
查看>>
极光推送(一)集成
查看>>
MySQL 8.0 压缩包版安装方法
查看>>
@Transient注解输出空间位置属性
查看>>
Ansible-playbook 条件判断when、pause(学习笔记二十三)
查看>>
5种你未必知道的JavaScript和CSS交互的方法(转发)
查看>>
线程进程间通信机制
查看>>
galera mysql 多主复制启动顺序及命令
查看>>
JS prototype 属性
查看>>
中位数性质——数列各个数到中位数的距离和最小
查看>>
WebApp之Meta标签
查看>>
添加Java文档注释
查看>>
Python3批量爬取网页图片
查看>>
iphone-common-codes-ccteam源代码 CCEncoding.m
查看>>