第一步建立工程
1、選擇file,然後new 再然後project,選擇spring initializr然後下一步
2、填寫專案資訊,然後下一步
3、選擇依賴 spring cloud discovery 然後選擇eureka discovery client ,然後下一步
4、建立專案儲存位置及名稱
第二步,建立beanconfiguration的類,建立resttemplate
1第三步寫呼叫介面package
com.ssc.consumer;23
import
org.springframework.cloud.client.loadbalancer.loadbalanced;
4import
org.springframework.context.annotation.bean;
5import
org.springframework.context.annotation.configuration;
6import
7import
org.springframework.web.client.restoperations;
8import
org.springframework.web.client.resttemplate;910
@configuration
11public
class
beanconfiguration
1718
19 }
1第五步、啟動程式,訪問 http://localhost:8056/consumer/callhello2檢視效果package
com.ssc.consumer;23
import
org.springframework.beans.factory.annotation.autowired;
4import
5import
org.springframework.web.bind.annotation.restcontroller;
6import
org.springframework.web.client.resttemplate;78
@restcontroller
9public
class
consumercontroller
16 //通過eureka呼叫
IDEA建立jsp專案
參考文章 新建web專案 file new project,然後next next finish 新增web框架 配置tomcat 新增應用伺服器tomcat 啟動專案 tomcat預設8080埠被占用 之前做.net開發,iis上部署了幾個專案,8080埠被其中乙個專案使用,修改tomcat配置埠...
IDEA建立Spring Boot專案
先記錄下自己遇到的坑 1.修改預設埠 由於預設埠為8080,經常被占用,server.port 8099 2.熱部署的問題 有的人說直接修改pom.xml即可,如下 我們往 pom.xml 中新增乙個依賴就可以了 org.springframework.boot spring boot devtoo...
idea 建立vue專案
在idea中新建專案,選中static web static web 輸入專案名稱vue,開啟terminal alt f12 視窗,驗證node版本 node v 驗證npm版本 npm v 配置cnpm倉庫 npm i g cnpm registry 安裝vue npm i g vue cli ...