Angular 中文官網:https://angular.cn/前端
參考代碼:https://ng.ant.design/#/components/dropdown java
npm install -g @angular/cli -> npm install -> ng build -> 普通angular工程:ng server node
npm install -g @angular/cli -> npm install -> ng build -> 增長跨域配置工程啓動: npm start mysql
https://nodejs.org/en/angularjs
在google網上應用商店添加插件augury ,用來調試前端代碼web
經過命令 ng new hello 生成一個新項目以及應用的骨架代碼redis
經過命令 ng server 啓動項目,默認端口4200。 spring
Spring boot 須要修改的地方在angular-cli.json中:sql
方法一: 在src 目錄下經過命令添加angular項目 : ng new angularnpm
方法二: 將以前建立好的項目copy進來
設置angular項目的輸出目錄爲springboot的資源目錄
修改angular-cli.json 配置文件的name 和 outDir
該項目下name爲 iot_hub
outDir 爲../resources/static(靜態資源路徑,系統能夠直接訪問且路徑下的全部文件都可被直接讀取)
編譯angular項目,產生輸出到springboot資源目錄
npm install
ng server --proxy-conf proxy.conf
ng build
http://localhost:8080
http://localhost:4200
加一個這樣的文件
同時修改package.json中的start
、
buildscript {
ext {
springBootVersion = '1.5.9.RELEASE'
}
repositories {
maven {
url "http://repo.iop.inspur.com:8081/nexus/content/groups/public"
}
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
group = 'com.inspur.iot'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
maven {
url "http://repo.iop.inspur.com:8081/nexus/content/groups/public"
}
}
bootRun {
addResources = true
}
configurations.all {
exclude module: 'google-collections'
}
dependencies {
compile('org.springframework.boot:spring-boot-starter')
compile('org.springframework.boot:spring-boot-starter-web')
compile('io.springfox:springfox-swagger2:2.6.1')
compile('io.springfox:springfox-swagger-ui:2.6.1')
compile('org.springframework.boot:spring-boot-starter-jdbc')
compile('org.springframework.boot:spring-boot-starter-data-jpa')
compile('mysql:mysql-connector-java:5.1.21')
compile('org.springframework.boot:spring-boot-starter-data-redis')
// compile("org.springframework:spring-orm")
compile("org.springframework.boot:spring-boot-devtools")
compile ("org.springframework.boot:spring-boot-maven-plugin:1.5.9.RELEASE")
testCompile('org.springframework.boot:spring-boot-starter-test')}