springboot專案練習一 搭建springboot應用
阿新 • • 發佈:2019-01-12
專案介紹:
1 將下載完成的網易新聞的json資料進行解析,對映成solr索引文件對應的欄位
2 使用ligurUi進行前端頁面展示
3 將抓取到的頁面進行靜態化生成html文件
專案環境搭建:
1 pom檔案
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.gc.springboot</groupId> <artifactId>springboot_solr</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>war</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>1.8</java.version> </properties> <!-- springboot 父依賴 --> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.5.RELEASE</version> </parent> <dependencies> <!-- web 依賴 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <!-- solr依賴 --> <groupId>org.springframework.data</groupId> <artifactId>spring-data-solr</artifactId> </dependency> <!-- 熱部署 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>provided</scope> </dependency> </dependencies> <!-- maven外掛 --> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>
2 新建application.properties檔案
server.port=8090 // 服務埠號
spring.data.solr.host=http://192.168.34.3:8080/solr // solr地址
spring.data.solr.repositories.enabled=true
spring.data.solr.collection=collection1 // solr儲存位置
3 啟動類app.calss
package com.gc.app; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class App { public static void main(String[] args) { SpringApplication.run(App.class, args); } }
4 啟動專案
http://localhost:8090/index.html
專案環境搭建完成,下面開始測試搭建solr服務,配置solr欄位資訊