JAVA入門教學之快速搭建基本的springboot(從spring boot到spring cloud)

安裝JDK
https://www.oracle.com/java/technologies/javase/javase-jdk8-downloads.html

在這裡插入圖片描述

使用的是jdk8,這裡使用的是windows10 64位的操作系統,所以下載對應的jdk版本

在這裡插入圖片描述

點擊鏈接會要你登錄,登錄以後才可以下載。

在這裡插入圖片描述

下載安裝以後找到jdk的安裝目錄,我這裡是C:\Program Files\Java\jdk1.8.0_211

在這裡插入圖片描述

配置JAVA_HOME,值就是你安裝jdk的地址C:\Program Files\Java\jdk1.8.0_211 千萬不要加bin

這個時候還沒有完成配置,還需要打開path環境變量在最後加

在這裡插入圖片描述

加到bin目錄

在這裡插入圖片描述
在這裡插入圖片描述

如果輸入javac顯示幫助信息證明配置成功瞭。

下面來下載springboot的IDE,建議新手不要去搞那些插件,直接裝一個完整版本的,可以在下面的連接下載完整版。
https://spring.io/tools#main

在這裡插入圖片描述

這種下下來的jar包可以直接用解壓軟件解開,裡面有直接可以執行的exe執行文件,直接用就可以瞭。

在這裡插入圖片描述
在這裡插入圖片描述
在這裡插入圖片描述

這裡就勾選springweb 也就是springmvc
完成以後會發現下載包的速度會很慢

這時候就要自己修改maven瞭
http://maven.apache.org/download.cgi

在這裡插入圖片描述

修改 conf\settings.xml 設置成阿裡的庫,把下載源從國外轉到國內

<mirrors>
  <mirror>
   <id>alimaven</id>
   <name>aliyun maven</name>
   <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
   <mirrorOf>central</mirrorOf>
  </mirror>
	</mirrors>

 

在這裡插入圖片描述

修改maven配置地址。重啟IDE就可以瞭。

在這裡插入圖片描述

package com.example.demo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;

@ComponentScan(basePackages={"com.example.demo"})//spring服務掃描目錄。可以用*替換com.example.*
@SpringBootApplication
public class CeshiApplication {

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

}
package com.example.demo;

import java.io.FileWriter;

import java.io.IOException;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import java.util.UUID;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.util.ResourceUtils;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/user")
public class HtuserController {

	@RequestMapping("/hi")
	@ResponseBody
	public Returnben getsession(HttpServletRequest request, HttpSession session) {
		Returnben returnben = new Returnben();
		returnben.setMsg("成功");
		returnben.setSuccess("1");
		return returnben;
	}

}
package com.example.demo;

public class Returnben {
	private String success = "0";

	public String getSuccess() {
		return success;
	}

	public void setSuccess(String success) {
		this.success = success;
	}

	public String getMsg() {
		return msg;
	}

	public void setMsg(String msg) {
		this.msg = msg;
	}

	public Object getObj() {
		return obj;
	}

	public Object getData() {
		return data;
	}

	public void setData(Object data) {
		this.data = data;
	}

	public void setObj(Object obj) {
		this.obj = obj;
	}

	private String msg = "";
	private Object obj = null;
	private Object data = null;
	private Long count;
	private int code;

	public int getCode() {
		return code;
	}

	public void setCode(int code) {
		this.code = code;
	}

	public Long getCount() {
		return count;
	}

	public void setCount(Long count) {
		this.count = count;
	}
}

 

 

在這裡插入圖片描述

沒配置端口的話就是8080端口

在這裡插入圖片描述

基本的springboot就完成瞭,後續再說集成各個框架和cloud其他組件

到此這篇關於JAVA入門教學之快速搭建基本的springboot(從spring boot到spring cloud)的文章就介紹到這瞭,更多相關springboot入門搭建內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: