1. 程式人生 > >博客系統項目搭建

博客系統項目搭建

w3c 全世界 單元測試 plugin ima ast app common 2.4

一.maven工程的好處

  1.一步構建

  maven對項目構建的過程進行標準化,通過一個命令即可完成構建過程。

  2.依賴管理

  maven為全世界的java開發者提供了一個免費的中央倉庫,在其中幾乎可以找到任何的流行開源軟件。通過衍生工具,我們還能對其進行快速搜索,因此maven工程不用手動導入jar包,可以通過在pom.xml中定義坐標從中央倉庫自動下載,方便並且不容易出錯。

  3.maven的跨平臺,可在window、linux上使用。

  4.maven遵循規範開發有利於提高大型團隊的開發效率,降低項目的維護成本,大公司基本上都會考慮使用maven來構架項目。

二.工程搭建分析

  1.Maven的常見打包方式為:jar、war、pom三種方式。

  2.Pom工程一般都是作為父工程用來管理jar包的版本、maven插件的版本、統一的依賴管理。

  3.聚合工程:分組分模塊開發,每個模塊開發完成要運行整個工程需要將每個模塊聚合在一起運行,聚合工程 打包方式pom。

  4.war工程一般是作為表現層(web層)打包方式。

技術分享圖片

三.工程搭建

  開發環境:eclipse-jee-oxygen-R-win32-x86_64

  Maven版本:3.3.9

  本地倉庫默認位置:C:\Users\Administrator\.m2

  我修改本地倉庫的位置為:E:\Users\local\repository

1.blog-parent工程。(pom工程)

(1)創建一個maven項目

技術分享圖片 技術分享圖片

(2)打包方式為pom

技術分享圖片

(3)pom.xml文件

技術分享圖片
<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.0http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <groupId>cn.edu.slxy.blog</groupId>
     <artifactId>blog-parent</artifactId>
     <version>0.0.1-SNAPSHOT</version>
     <packaging>pom</packaging>
     <description>博客系統,父工程</description>
     <!-- 集中定義依賴版本號 -->
     <properties>
          <junit.version>4.12</junit.version>
          <spring.version>4.2.4.RELEASE</spring.version>
          <mybatis.version>3.2.8</mybatis.version>
          <mybatis.spring.version>1.2.2</mybatis.spring.version>
          <mybatis.paginator.version>1.2.15</mybatis.paginator.version>
          <mysql.version>5.1.32</mysql.version>
          <slf4j.version>1.6.4</slf4j.version>
          <jackson.version>2.4.2</jackson.version>
          <druid.version>1.0.9</druid.version>
          <httpclient.version>4.3.5</httpclient.version>
          <jstl.version>1.2</jstl.version>
          <servlet-api.version>2.5</servlet-api.version>
          <jsp-api.version>2.0</jsp-api.version>
          <joda-time.version>2.5</joda-time.version>
          <commons-lang3.version>3.3.2</commons-lang3.version>
          <commons-io.version>1.3.2</commons-io.version>
          <commons-net.version>3.3</commons-net.version>
          <pagehelper.version>3.4.2-fix</pagehelper.version>
          <jsqlparser.version>0.9.1</jsqlparser.version>
          <commons-fileupload.version>1.3.1</commons-fileupload.version>
          <jedis.version>2.7.2</jedis.version>
          <solrj.version>4.10.3</solrj.version>
          <dubbo.version>2.5.3</dubbo.version>
          <zookeeper.version>3.4.7</zookeeper.version>
          <zkclient.version>0.1</zkclient.version>
          <activemq.version>5.11.2</activemq.version>
          <freemarker.version>2.3.23</freemarker.version>
          <quartz.version>2.2.2</quartz.version>
     </properties>
     <dependencyManagement>
          <dependencies>
              <!-- 時間操作組件 -->
              <dependency>
                   <groupId>joda-time</groupId>
                   <artifactId>joda-time</artifactId>
                   <version>${joda-time.version}</version>
              </dependency>
              <!-- Apache工具組件 -->
              <dependency>
                   <groupId>org.apache.commons</groupId>
                   <artifactId>commons-lang3</artifactId>
                   <version>${commons-lang3.version}</version>
              </dependency>
              <dependency>
                   <groupId>org.apache.commons</groupId>
                   <artifactId>commons-io</artifactId>
                   <version>${commons-io.version}</version>
              </dependency>
              <dependency>
                   <groupId>commons-net</groupId>
                   <artifactId>commons-net</artifactId>
                   <version>${commons-net.version}</version>
              </dependency>
              <!-- Jackson Json處理工具包 -->
              <dependency>
                   <groupId>com.fasterxml.jackson.core</groupId>
                   <artifactId>jackson-databind</artifactId>
                   <version>${jackson.version}</version>
              </dependency>
              <!-- httpclient -->
              <dependency>
                   <groupId>org.apache.httpcomponents</groupId>
                   <artifactId>httpclient</artifactId>
                   <version>${httpclient.version}</version>
              </dependency>
              <!-- quartz任務調度框架 -->
              <dependency>
                   <groupId>org.quartz-scheduler</groupId>
                   <artifactId>quartz</artifactId>
                   <version>${quartz.version}</version>
              </dependency>
              <!-- 單元測試 -->
              <dependency>
                   <groupId>junit</groupId>
                   <artifactId>junit</artifactId>
                   <version>${junit.version}</version>
                   <scope>test</scope>
              </dependency>
              <!-- 日誌處理 -->
              <dependency>
                   <groupId>org.slf4j</groupId>
                   <artifactId>slf4j-log4j12</artifactId>
                   <version>${slf4j.version}</version>
              </dependency>
              <!-- Mybatis -->
              <dependency>
                   <groupId>org.mybatis</groupId>
                   <artifactId>mybatis</artifactId>
                   <version>${mybatis.version}</version>
              </dependency>
              <dependency>
                   <groupId>org.mybatis</groupId>
                   <artifactId>mybatis-spring</artifactId>
                   <version>${mybatis.spring.version}</version>
              </dependency>
              <dependency>
                   <groupId>com.github.miemiedev</groupId>
                   <artifactId>mybatis-paginator</artifactId>
                   <version>${mybatis.paginator.version}</version>
              </dependency>
              <dependency>
                   <groupId>com.github.pagehelper</groupId>
                   <artifactId>pagehelper</artifactId>
                   <version>${pagehelper.version}</version>
              </dependency>
              <!-- MySql -->
              <dependency>
                   <groupId>mysql</groupId>
                   <artifactId>mysql-connector-java</artifactId>
                   <version>${mysql.version}</version>
              </dependency>
              <!-- 連接池 -->
              <dependency>
                   <groupId>com.alibaba</groupId>
                   <artifactId>druid</artifactId>
                   <version>${druid.version}</version>
              </dependency>
              <!-- Spring -->
              <dependency>
                   <groupId>org.springframework</groupId>
                   <artifactId>spring-context</artifactId>
                   <version>${spring.version}</version>
              </dependency>
              <dependency>
                   <groupId>org.springframework</groupId>
                   <artifactId>spring-beans</artifactId>
                   <version>${spring.version}</version>
              </dependency>
              <dependency>
                   <groupId>org.springframework</groupId>
                   <artifactId>spring-webmvc</artifactId>
                   <version>${spring.version}</version>
              </dependency>
              <dependency>
                   <groupId>org.springframework</groupId>
                   <artifactId>spring-jdbc</artifactId>
                   <version>${spring.version}</version>
              </dependency>
              <dependency>
                   <groupId>org.springframework</groupId>
                   <artifactId>spring-aspects</artifactId>
                   <version>${spring.version}</version>
              </dependency>
              <dependency>
                   <groupId>org.springframework</groupId>
                   <artifactId>spring-jms</artifactId>
                   <version>${spring.version}</version>
              </dependency>
              <dependency>
                   <groupId>org.springframework</groupId>
                   <artifactId>spring-context-support</artifactId>
                   <version>${spring.version}</version>
              </dependency>
              <!-- JSP相關 -->
              <dependency>
                   <groupId>jstl</groupId>
                   <artifactId>jstl</artifactId>
                   <version>${jstl.version}</version>
              </dependency>
              <dependency>
                   <groupId>javax.servlet</groupId>
                   <artifactId>servlet-api</artifactId>
                   <version>${servlet-api.version}</version>
                   <scope>provided</scope>
              </dependency>
              <dependency>
                   <groupId>javax.servlet</groupId>
                   <artifactId>jsp-api</artifactId>
                   <version>${jsp-api.version}</version>
                   <scope>provided</scope>
              </dependency>
              <!-- 文件上傳組件 -->
              <dependency>
                   <groupId>commons-fileupload</groupId>
                   <artifactId>commons-fileupload</artifactId>
                   <version>${commons-fileupload.version}</version>
              </dependency>
              <!-- Redis客戶端 -->
              <dependency>
                   <groupId>redis.clients</groupId>
                   <artifactId>jedis</artifactId>
                   <version>${jedis.version}</version>
              </dependency>
              <!-- solr客戶端 -->
              <dependency>
                   <groupId>org.apache.solr</groupId>
                   <artifactId>solr-solrj</artifactId>
                   <version>${solrj.version}</version>
              </dependency>
              <!-- dubbo相關 -->
              <dependency>
                   <groupId>com.alibaba</groupId>
                   <artifactId>dubbo</artifactId>
                   <version>${dubbo.version}</version>
              </dependency>
              <dependency>
                   <groupId>org.apache.zookeeper</groupId>
                   <artifactId>zookeeper</artifactId>
                   <version>${zookeeper.version}</version>
              </dependency>
              <dependency>
                   <groupId>com.github.sgroschupf</groupId>
                   <artifactId>zkclient</artifactId>
                   <version>${zkclient.version}</version>
              </dependency>
              <dependency>
                   <groupId>org.apache.activemq</groupId>
                   <artifactId>activemq-all</artifactId>
                   <version>${activemq.version}</version>
              </dependency>
              <dependency>
                   <groupId>org.freemarker</groupId>
                   <artifactId>freemarker</artifactId>
                   <version>${freemarker.version}</version>
              </dependency>
          </dependencies>
     </dependencyManagement>
     <build>
          <finalName>${project.artifactId}</finalName>
          <plugins>
              <!-- 資源文件拷貝插件 -->
              <plugin>
                   <groupId>org.apache.maven.plugins</groupId>
                   <artifactId>maven-resources-plugin</artifactId>
                   <version>2.7</version>
                   <configuration>
                        <encoding>UTF-8</encoding>
                   </configuration>
              </plugin>
              <!-- java編譯插件 -->
              <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-compiler-plugin</artifactId>
                <version>3.6.0</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                     <encoding>${project.build.sourceEncoding}</encoding>
                    <compilerArguments>
                        <verbose />
                         <bootclasspath>${java.home}/lib/rt.jar;${java.home}/lib/jce.jar</bootclasspath>
                    </compilerArguments>
                </configuration>
            </plugin>
          </plugins>
          <pluginManagement>
              <plugins>
                   <!-- 配置Tomcat插件 -->
                   <plugin>
                        <groupId>org.apache.tomcat.maven</groupId>
                        <artifactId>tomcat7-maven-plugin</artifactId>
                        <version>2.2</version>
                   </plugin>
              </plugins>
          </pluginManagement>
     </build>
</project>
通用的pom文件

2.blog-common工程。(通用的工具類、通用的pojo。打包方式jar。需要繼承父工程。)

(1)創建一個maven項目

技術分享圖片

(2)打包方式為pom

技術分享圖片

(3)pom.xml文件

技術分享圖片
<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.0http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <parent>
          <groupId>cn.edu.slxy.blog</groupId>
          <artifactId>blog-parent</artifactId>
          <version>0.0.1-SNAPSHOT</version>
     </parent>
     <artifactId>blog-common</artifactId>
     <description>通用的工具類、通用的pojo</description>
     <!-- 依賴的jar包 -->
     <dependencies>
          <!-- 時間操作組件 -->
          <dependency>
              <groupId>joda-time</groupId>
              <artifactId>joda-time</artifactId>
          </dependency>
          <!-- Apache工具組件 -->
          <dependency>
              <groupId>org.apache.commons</groupId>
              <artifactId>commons-lang3</artifactId>
          </dependency>
          <dependency>
              <groupId>org.apache.commons</groupId>
              <artifactId>commons-io</artifactId>
          </dependency>
          <dependency>
              <groupId>commons-net</groupId>
              <artifactId>commons-net</artifactId>
          </dependency>
          <!-- Jackson Json處理工具包 -->
          <dependency>
               <groupId>com.fasterxml.jackson.core</groupId>
              <artifactId>jackson-databind</artifactId>
          </dependency>
          <!-- 單元測試 -->
          <dependency>
              <groupId>junit</groupId>
              <artifactId>junit</artifactId>
              <scope>test</scope>
          </dependency>
          <!-- 日誌處理 -->
          <dependency>
              <groupId>org.slf4j</groupId>
              <artifactId>slf4j-log4j12</artifactId>
          </dependency>
     </dependencies>
</project>
common工程pom文件

3.blog-manager工程。(服務層工程,聚合工程。打包方式pom。)

(1)創建一個maven項目

技術分享圖片

(2)pom.xml文件

技術分享圖片
<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.0http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <parent>
          <groupId>cn.edu.slxy.blog</groupId>
          <artifactId>blog-parent</artifactId>
          <version>0.0.1-SNAPSHOT</version>
     </parent>
     <artifactId>blog-manager</artifactId>
     <packaging>pom</packaging>
     <description>服務層工程,聚合工程。</description>
     <dependencies>
          <!-- 依賴common -->
          <dependency>
              <groupId>cn.edu.slxy.blog</groupId>
              <artifactId>blog-common</artifactId>
              <version>0.0.1-SNAPSHOT</version>
          </dependency>
     </dependencies>
     <build>
          <plugins>
              <!-- 配置Tomcat插件 -->
              <plugin>
                   <groupId>org.apache.tomcat.maven</groupId>
                   <artifactId>tomcat7-maven-plugin</artifactId>
                   <configuration>
                        <path>/</path>
                        <port>8080</port>
                   </configuration>
              </plugin>
          </plugins>
     </build>
</project>
服務層工程pom文件

4.blog-manager-pojo 模塊。(blog-manager服務層工程的maven模塊,打包方式為jar)

(1)創建blog-manager-pojo 模塊

技術分享圖片

技術分享圖片

(2)pom.xml文件

技術分享圖片
<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.0http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>cn.edu.slxy.blog</groupId>
    <artifactId>blog-manager</artifactId>
    <version>0.0.1-SNAPSHOT</version>
  </parent>
  <artifactId>blog-manager-pojo</artifactId>
 
  <!-- 集成通用mapper -->
  <dependencies>
     <dependency>
     <groupId>com.github.abel533</groupId>
     <artifactId>mapper</artifactId>
     <version>2.3.4</version>
     </dependency>
  </dependencies>
 
</project>
pojo模塊pom文件

5.blog-manager-dao (持久層,blog-manager服務層工程的maven模塊,打包方式為jar。)

(1)創建blog-manager-dao 模塊

技術分享圖片

技術分享圖片

(2)pom.xml文件

技術分享圖片
<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.0http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <parent>
          <groupId>cn.edu.slxy.blog</groupId>
          <artifactId>blog-manager</artifactId>
          <version>0.0.1-SNAPSHOT</version>
     </parent>
     <artifactId>blog-manager-dao</artifactId>
     <dependencies>
          <!-- 依賴pojo -->
          <dependency>
              <groupId>cn.edu.slxy.blog</groupId>
              <artifactId>blog-manager-pojo</artifactId>
              <version>0.0.1-SNAPSHOT</version>
          </dependency>
          <!-- Mybatis -->
          <dependency>
              <groupId>org.mybatis</groupId>
              <artifactId>mybatis</artifactId>
          </dependency>
          <dependency>
              <groupId>org.mybatis</groupId>
              <artifactId>mybatis-spring</artifactId>
          </dependency>
          <dependency>
              <groupId>com.github.miemiedev</groupId>
              <artifactId>mybatis-paginator</artifactId>
          </dependency>
          <dependency>
              <groupId>com.github.pagehelper</groupId>
              <artifactId>pagehelper</artifactId>
          </dependency>
          <!-- MySql -->
          <dependency>
              <groupId>mysql</groupId>
               <artifactId>mysql-connector-java</artifactId>
          </dependency>
          <!-- 連接池 -->
          <dependency>
              <groupId>com.alibaba</groupId>
              <artifactId>druid</artifactId>
          </dependency>
          
          <!-- 集成通用mapper -->
          <dependency>
              <groupId>com.github.abel533</groupId>
              <artifactId>mapper</artifactId>
              <version>2.3.4</version>
          </dependency>
     </dependencies>
</project>
持久層pom文件

6.blog-manager-interface(業務接口層,blog-manager服務層工程的maven模塊,打包方式為jar。)

(1)創建blog-manager-interface 模塊

技術分享圖片

(2)pom.xml文件

技術分享圖片
<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.0http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>cn.edu.slxy.blog</groupId>
    <artifactId>blog-manager</artifactId>
    <version>0.0.1-SNAPSHOT</version>
  </parent>
  <artifactId>blog-manager-interface</artifactId>
  
  <dependencies>
     <!-- 依賴pojo -->
     <dependency>
          <groupId>cn.edu.slxy.blog</groupId>
     <artifactId>blog-manager-pojo</artifactId>
     <version>0.0.1-SNAPSHOT</version>
     </dependency>
  </dependencies>
  
</project>
業務層接口pom文件

7.blog-manager-service(業務層,blog-manager服務層工程的maven模塊,打包方式為jar。)

(1)創建blog-manager-service 模塊

技術分享圖片

(2)pom.xml文件

技術分享圖片
<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.0http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <parent>
          <groupId>cn.edu.slxy.blog</groupId>
          <artifactId>blog-manager</artifactId>
          <version>0.0.1-SNAPSHOT</version>
     </parent>
     <artifactId>blog-manager-service</artifactId>
     <dependencies>
          <!-- 依賴dao -->
          <dependency>
              <groupId>cn.edu.slxy.blog</groupId>
              <artifactId>blog-manager-dao</artifactId>
              <version>0.0.1-SNAPSHOT</version>
          </dependency>
          <!-- 依賴interface -->
          <dependency>
              <groupId>cn.edu.slxy.blog</groupId>
               <artifactId>blog-manager-interface</artifactId>
              <version>0.0.1-SNAPSHOT</version>
          </dependency>
          <!-- 依賴Spring -->
          <dependency>
              <groupId>org.springframework</groupId>
              <artifactId>spring-context</artifactId>
          </dependency>
          <dependency>
              <groupId>org.springframework</groupId>
              <artifactId>spring-beans</artifactId>
          </dependency>
          <dependency>
              <groupId>org.springframework</groupId>
              <artifactId>spring-webmvc</artifactId>
          </dependency>
          <dependency>
              <groupId>org.springframework</groupId>
              <artifactId>spring-jdbc</artifactId>
          </dependency>
          <dependency>
              <groupId>org.springframework</groupId>
              <artifactId>spring-aspects</artifactId>
          </dependency>
          <dependency>
              <groupId>org.springframework</groupId>
              <artifactId>spring-jms</artifactId>
          </dependency>
          <dependency>
              <groupId>org.springframework</groupId>
               <artifactId>spring-context-support</artifactId>
          </dependency>
     </dependencies>
</project>
業務層pom文件

8.blog-manager-web(表現層,blog-manager服務層工程的maven模塊,打包方式為war。)

(1)創建blog-manager-web 模塊

技術分享圖片

(2)創建完成項目報錯,原因是目錄結構不完整,在webapp目錄下缺少 WEB-INF目錄和該目錄下的web.xml文件。

技術分享圖片

解決方法一:可以手動創建,補全該目錄和和該目錄下的文件。

  • web.xml

技術分享圖片
<?xml version="1.0" encoding="UTF-8"?>
<web-app  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  xmlns="http://java.sun.com/xml/ns/javaee"  xsi:schemaLocation="http://java.sun.com/xml/ns/javaeehttp://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"  version="2.5">
  <display-name>blog-manager-web</display-name>
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
  
</web-app>
View Code
  • 解決方法二:如下圖:

技術分享圖片

(3)pom.xml文件

技術分享圖片
<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.0http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <parent>
          <groupId>cn.edu.slxy.blog</groupId>
          <artifactId>blog-manager</artifactId>
          <version>0.0.1-SNAPSHOT</version>
     </parent>
     <artifactId>blog-manager-web</artifactId>
     <packaging>war</packaging>
     <description>表現層</description>
     <dependencies>
          <!-- 依賴service -->
          <dependency>
              <groupId>cn.edu.slxy.blog</groupId>
               <artifactId>blog-manager-service</artifactId>
              <version>0.0.1-SNAPSHOT</version>
          </dependency>
          <!-- JSP相關 -->
          <dependency>
              <groupId>jstl</groupId>
              <artifactId>jstl</artifactId>
          </dependency>
          <dependency>
              <groupId>javax.servlet</groupId>
              <artifactId>servlet-api</artifactId>
              <scope>provided</scope>
          </dependency>
          <dependency>
              <groupId>javax.servlet</groupId>
              <artifactId>jsp-api</artifactId>
              <scope>provided</scope>
          </dependency>
          <!-- 文件上傳組件 -->
          <dependency>
              <groupId>commons-fileupload</groupId>
              <artifactId>commons-fileupload</artifactId>
          </dependency>
     </dependencies>
</project>
表現層pom文件

(4)添加歡迎頁,運行啟動blog-manager工程。

技術分享圖片

  • index.jsp

技術分享圖片
<%@ page language="java" contentType="text/html;  charset=utf-8"
    pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01  Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;  charset=utf-8">
<title>首頁</title>
</head>
<body>
     <h1>博客系統首頁</h1>
</body>
</html>
測試首頁
  • 把blog-parent、blog-common安裝到本地倉庫。然後再啟動。安裝過程如下:

技術分享圖片

  • 運行blog-manager工程。

技術分享圖片

技術分享圖片

  • 項目搭建成功

技術分享圖片

博客系統項目搭建