ssm(Spring、Springmvc、Mybatis)實戰之淘淘商城-第八天(非原創)

文章大綱

1、課程介紹
2、Solr基本介紹
3、ssm整合Solr
4、項目源碼與資料下載
5、參考文章php

 

1、課程介紹

一共14天課程
(1)第一天:電商行業的背景。淘淘商城的介紹。搭建項目工程。Svn的使用。
(2)次日:框架的整合。後臺管理商品列表的實現。分頁插件。
(3)第三天:後臺管理。商品添加。商品類目的選擇、圖片上傳、富文本編輯器的使用。
(4)第四天:商品規格的實現。
(5)第五天:商城前臺系統的搭建。首頁商品分類的展現。Jsonp。
(6)第六天:cms系統的實現。前臺大廣告位的展現。
(7)第七天:cms系統添加緩存。Redis。緩存同步。
(8)第八天:搜索功能的實現。使用solr實現搜索。
(9)第九天:商品詳情頁面的展現。
(10)第十天:單點登陸系統。Session共享。
(11)第十一天:購物車訂單系統的實現。
(12)第十二天:nginx。反向代理工具。
(13)第十三天:redis集羣的搭建、solr集羣的搭建。系統的部署。
(14)項目總結。html

2、Solr基本介紹

1. 什麼是Solr

Solr 是Apache下的一個頂級開源項目,採用Java開發,它是基於Lucene的全文搜索服務器。Solr提供了比Lucene更爲豐富的查詢語言,同時實現了可配置、可擴展,並對索引、搜索性能進行了優化。
Solr是一個全文檢索服務器,只須要進行配置就能夠實現全文檢索服務。java

2. 全文搜索框架介紹

https://www.cnblogs.com/WUXIAOCHANG/p/10855506.htmlnginx

3. 下載

從Solr官方網站(http://lucene.apache.org/solr/ )下載Solr4.10.3,根據Solr的運行環境,Linux下須要下載lucene-4.10.3.tgz,windows下須要下載lucene-4.10.3.zip。
下載lucene-4.10.3.zip並解壓:web

 

bin:solr的運行腳本
contrib:solr的一些貢獻軟件/插件,用於加強solr的功能。
dist:該目錄包含build過程當中產生的war和jar文件,以及相關的依賴文件。
docs:solr的API文檔
example:solr工程的例子目錄:
example/solr:
該目錄是一個包含了默認配置信息的Solr的Core目錄。
example/multicore:
該目錄包含了在Solr的multicore中設置的多個Core目錄。
example/webapps:
該目錄中包括一個solr.war,該war可做爲solr的運行實例工程。
licenses:solr相關的一些許可信息redis

4. Solr的安裝及配置

4.1 運行環境
solr 須要運行在一個Servlet容器中,Solr4.10.3要求jdk使用1.7以上,Solr默認提供Jetty(java寫的Servlet容器),本教程使用Tocmat做爲Servlet容器,環境以下:
Solr:Solr4.10.3
Jdk:jdk1.7.0_72
Tomcat:apache-tomcat-7.0.53spring

4.2 Solr整合tomcat
(1)將dist\solr-4.10.3.war拷貝到Tomcat的webapp目錄下更名爲solr.war
(2)啓動tomcat後,solr.war自動解壓,將原來的solr.war刪除。
(3)拷貝example\lib\ext 目錄下全部jar包到Tomcat的webapp\solr\WEB-INF\lib目錄下apache

 
 

(4)拷貝log4j.properties文件
在 Tomcat下webapps\solr\WEB-INF目錄中建立文件 classes文件夾,
複製Solr目錄下example\resources\log4j.properties至Tomcat下webapps\solr\WEB-INF\classes目錄
(5)建立solrhome及配置solrcore的solrconfig.xml文件
(6)修改Tomcat目錄 下webapp\solr\WEB-INF\web.xml文件,以下所示:
設置Solr homewindows

 

5. Solr界面功能

 
 
 
image.png
 
 

3、ssm整合Solr

1. 搭建ssm項目

具體搭建過程能夠參考taotao-rest項目,搭建後代碼能夠在項目源碼與資料下載中進行學習。緩存

2. Solr鏈接測試

package com.taotao.search.dao.impl; import org.apache.solr.client.solrj.SolrServer; import org.apache.solr.client.solrj.impl.HttpSolrServer; import org.apache.solr.common.SolrInputDocument; import org.junit.Test; /** * Solr鏈接測試 * * @author Administrator * */ public class SolrJTest { @Test public void addDocument() throws Exception{ //1.建立連接 SolrServer solr = new HttpSolrServer("http://localhost:8983/solr/"); //2.建立一文檔對象 SolrInputDocument document = new SolrInputDocument(); //3.向文檔對象中添加域 (先定義後使用) document.addField("id", "001"); document.addField("title", "這是新的域"); //4.提交文檔到索引庫 solr.add(document); //5.提交 solr.commit(); } // @Test // public void deleteDocument() throws Exception { // //建立一鏈接 // SolrServer solrServer = new HttpSolrServer("http://192.168.3.153:8983/solr"); // //solrServer.deleteById("test001"); // solrServer.deleteByQuery("*:*"); // solrServer.commit(); // } } 

3. resources文件夾中新建Solr配置文件

 
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd"> <!-- 配置solrServer對象 --> <!-- 單機版 --> <!-- <bean id="solrServer" class="org.apache.solr.client.solrj.impl.HttpSolrServer"> <constructor-arg name="baseURL" value="http://192.168.25.154:8080/solr"></constructor-arg> </bean> --> <!-- 集羣版配置 --> <bean id="solrServer" class="org.apache.solr.client.solrj.impl.CloudSolrServer"> <constructor-arg name="zkHost" value="192.168.25.154:2181,192.168.25.154:2182,192.168.25.154:2183"></constructor-arg> <property name="defaultCollection" value="collection2"/> </bean> </beans> 

4. 新建數據添加功能

在com.taotao.service包下新建ItemService.java

package com.taotao.search.service; import com.taotao.common.pojo.TaotaoResult; public interface ItemService { TaotaoResult importAllItems() throws Exception ; } 

在com.taotao.service.impl包下新建ItemServiceImpl.java

package com.taotao.search.service.impl; import java.io.IOException; import java.util.List; import org.apache.solr.client.solrj.SolrServer; import org.apache.solr.client.solrj.SolrServerException; import org.apache.solr.common.SolrInputDocument; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.taotao.common.pojo.SolrItem; import com.taotao.common.pojo.TaotaoResult; import com.taotao.search.mapper.ItemMapper; import com.taotao.search.service.ItemService; /** * 向索引庫中導入商品信息 * <p>Title: ItemServiceImpl</p> * <p>Description: </p> * <p>Company: www.itcast.com</p> * @author 入雲龍 * @date 2015年8月22日上午11:42:32 * @version 1.0 */ @Service public class ItemServiceImpl implements ItemService { @Autowired private ItemMapper itemMapper; @Autowired private SolrServer solrServer; @Override public TaotaoResult importAllItems() throws Exception { //查詢商品列表 List<SolrItem> list = itemMapper.getItemList(); //向索引庫中添加文檔 for (SolrItem solrItem : list) { //建立文檔對象 SolrInputDocument document = new SolrInputDocument(); document.setField("id", solrItem.getId()); document.setField("item_title", solrItem.getTitle()); document.setField("item_sell_point", solrItem.getSell_point()); document.setField("item_price", solrItem.getPrice()); document.setField("item_image", solrItem.getImage()); document.setField("item_category_name", solrItem.getItem_cat_name()); document.setField("item_desc", solrItem.getItem_desc()); //向索引庫中添加文檔 solrServer.add(document); } //提交修改 solrServer.commit(); return TaotaoResult.ok(); } } 

com.taotao.controller包下新建ItemController.java

package com.taotao.search.controller; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import com.taotao.common.pojo.TaotaoResult; import com.taotao.common.utils.ExceptionUtil; import com.taotao.search.service.ItemService; @Controller @RequestMapping("/manage") public class ItemController { @Autowired private ItemService itemService; @RequestMapping("/importall") @ResponseBody public TaotaoResult importAll() { try { TaotaoResult result = itemService.importAllItems(); return result; } catch (Exception e) { e.printStackTrace(); return TaotaoResult.build(500, ExceptionUtil.getStackTrace(e)); } } } 

5. 新建數據查詢功能

在com.taotao.service包下新建SearchService.java

package com.taotao.search.service; import com.taotao.common.pojo.SearchResult; public interface SearchService { SearchResult search(String queryString, Long page, Long pageSize) throws Exception; } 

在com.taotao.service.impl包下新建SearchServiceImpl.java

package com.taotao.search.service.impl; import org.apache.solr.client.solrj.SolrQuery; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.taotao.common.pojo.SearchResult; import com.taotao.search.dao.ItemDao; import com.taotao.search.service.SearchService; @Service public class SearchServiceImpl implements SearchService { @Autowired private ItemDao itemDao; @Override public SearchResult search(String queryString, Long page, Long pageSize) throws Exception { //建立查詢對象 SolrQuery solrQuery = new SolrQuery(); //設置查詢條件 //solrQuery.set("q",""); solrQuery.setQuery(queryString); //設置分頁 solrQuery.setStart((int) ((page - 1) * pageSize)); solrQuery.setRows(pageSize.intValue()); //高亮設置 solrQuery.setHighlight(true); //設置高亮顯示的域 solrQuery.addHighlightField("item_title"); //高亮顯示的前綴 solrQuery.setHighlightSimplePre("<span style='color:red'>"); //高亮顯示的後綴 solrQuery.setHighlightSimplePost("</span>"); //設置默認搜素域 solrQuery.set("df", "item_keywords"); //調用dao查詢商品列表 SearchResult searchResult = itemDao.searchItem(solrQuery); //計算總頁數 long total = searchResult.getTotal(); long pageCount = total / pageSize; if (total % pageSize > 0) { pageCount++; } searchResult.setPageCount(pageCount); searchResult.setPage(page); //返回結果 return searchResult; } } 

com.taotao.controller包下新建SearchController.java

package com.taotao.search.controller; import org.apache.commons.lang3.StringUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.ResponseBody; import com.taotao.common.pojo.SearchResult; import com.taotao.common.pojo.TaotaoResult; import com.taotao.common.utils.ExceptionUtil; import com.taotao.search.service.SearchService; @Controller public class SearchController { @Autowired private SearchService searchService; @RequestMapping("/q") @ResponseBody public TaotaoResult search(@RequestParam("kw")String queryString, @RequestParam(defaultValue="1")Long page, @RequestParam(defaultValue="60")Long pageSize) { if (StringUtils.isBlank(queryString)) { return TaotaoResult.build(400, "查詢條件不能爲空"); } try { //解決get亂碼問題 queryString = new String(queryString.getBytes("iso8859-1"), "utf-8"); SearchResult searchResult = searchService.search(queryString, page, pageSize); return TaotaoResult.ok(searchResult); } catch (Exception e) { e.printStackTrace(); return TaotaoResult.build(500, ExceptionUtil.getStackTrace(e)); } } } 

4、項目源碼與資料下載
連接:https://pan.baidu.com/s/1V-SdXaAFwmCszHRHWEK6Yg
提取碼:ydka

5、參考文章
http://yun.itheima.com/course?hm

相關文章
相關標籤/搜索