您当前的位置: 首页 >  spring boot

ZhangJiQun&MXP

暂无认证

  • 2浏览

    0关注

    1187博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

spring boot bilibili

ZhangJiQun&MXP 发布时间:2021-06-17 19:00:23 ,浏览量:2

spring boot bilibili idea找不到spring boot插件plugin,找不到spring Initializr

安装了付费版就OK,社区版本是没有的 在这里插入图片描述

在这里插入图片描述 在这里插入图片描述 在这里插入图片描述 在这里插入图片描述 springboot 约定大于配置,开发人员专注逻辑 、、 在这里插入图片描述

为什么使用spring boot

spring cloud(云服务,微服务),sprig boot 相互成就; 在这里插入图片描述 在这里插入图片描述 在这里插入图片描述 在这里插入图片描述

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

在这里插入图片描述

在这里插入图片描述 在这里插入图片描述 在这里插入图片描述



	4.0.0
	
		org.springframework.boot
		spring-boot-starter-parent
		2.5.1
		 
	
	com.example
	demo
	0.0.1-SNAPSHOT
	demo
	Demo project for Spring Boot
	
		1.8
	
	
		
			org.springframework.boot
			spring-boot-starter-web
		

		
			org.springframework.boot
			spring-boot-starter-test
			test
		
	

	
		
			
				org.springframework.boot
				spring-boot-maven-plugin
			
		
	



在这里插入图片描述

package com.example.demo;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/hello")
public class Hello {
    @RequestMapping("/say")
    public String sayHi(){
        return "Hello  World";
    }
}

在这里插入图片描述

package com.example;

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

@SpringBootApplication
public class DemoApplication {

	public static void main(String[] args) {
		int a =1;
		System.out.println(123);
		SpringApplication.run(DemoApplication.class, args);
	}

}

端口占用问题:

在这里插入图片描述 在这里插入图片描述

在这里插入图片描述 在这里插入图片描述 在这里插入图片描述 在这里插入图片描述 ![在这里插入图片描述](https://img-blog.csdnimg.cn/20210630174549478.jpg?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzM4OTk4MjEz,size_16,color_FFFFFF,t_70在这里插入图片描述 在这里插入图片描述 在这里插入图片描述 在这里插入图片描述 在这里插入图片描述 在这里插入图片描述 在这里插入图片描述 在这里插入图片描述 在这里插入图片描述

关注
打赏
1665659684
查看更多评论
立即登录/注册

微信扫码登录

0.3110s