微服务-eclipse

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

@SpringBootApplication
public class DemoApplication {


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

}
复制代码

报错:

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

Wed Feb 27 17:56:02 CST 2019
There was an unexpected error (type=Not Found, status=404).
No message available
复制代码

解决:

添加依赖如下

  <groupId>org.springframework.boot</groupId>
       <artifactId>spring-boot-starter-web</artifactId>
		</dependency>
复制代码

第一种:新建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;

@RestController
public class TestController {
	@RequestMapping("getName/{name}")
	@ResponseBody
	public String getName(@PathVariable String name){
		if(name==null){
			name="null";
		}
		return "hello miky"+name;
	}

}
复制代码

浏览器输入:http://localhost:8080/getName/haha 显示如下:

hello mikyhaha

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

)

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值