您好,登錄后才能下訂單哦!
這篇文章給大家介紹如何進(jìn)行spring+springmvc+hibernate整合,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
三大框架反反復(fù)復(fù)搭了很多次,雖然每次都能搭起來,但是效率不高。最近重新搭了一次,理順了思路,整理了需要注意的地方,分享出來。
工具:Eclipse(jdk 1.7) spring和hibernate版本均為4.0以上
推薦使用maven構(gòu)建項(xiàng)目,相比自己手動(dòng)導(dǎo)入jar包要方便很多。
(沒用過maven的可以i先去了解一下)
注意點(diǎn):使用Eclipse創(chuàng)建的maven工程文件結(jié)構(gòu)可能不太正確,需要自己手動(dòng)創(chuàng)建文件夾。
正確的文件結(jié)構(gòu):
-src
---main
------java(class文件)
------resources(配置文件)
------webapp(web文件)
---test(測(cè)試文件)
------java
------resources
導(dǎo)入jar包也是框架整合中比較麻煩的點(diǎn),常常會(huì)導(dǎo)入太多不相關(guān)的包,但由于不熟悉又不敢刪掉,于是jar
包越導(dǎo)越多,到最后框架是搭起來,但jar包卻導(dǎo)了十幾二十個(gè)。
注意點(diǎn):這里建議的做法是當(dāng)你不熟悉框架需要導(dǎo)入什么jar包時(shí),可以先導(dǎo)入核心包,然后當(dāng)運(yùn)行項(xiàng)目時(shí)提示NotFoundClass時(shí),再根據(jù)錯(cuò)誤提示添加相關(guān)的依賴,這樣就不會(huì)導(dǎo)入多余的jar包。
推薦可以到該網(wǎng)站上去搜索你需要的依賴:https://mvnrepository.com/
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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>hcoding</groupId> <artifactId>MyWebDemo</artifactId> <packaging>war</packaging> <version>0.0.1-SNAPSHOT</version> <name>MyWebDemo Maven Webapp</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <!-- spring start --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>4.3.9.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>4.3.9.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>4.3.9.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>4.3.9.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aspects</artifactId> <version>4.3.9.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-orm</artifactId> <version>4.3.9.RELEASE</version> </dependency> <!-- spring end --> <!-- springmvc start --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>4.3.9.RELEASE</version> </dependency> <!-- springmvc end --> <!-- loging start --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.6</version> </dependency> <!-- loging end --> <dependency> <groupId>aspectj</groupId> <artifactId>aspectjrt</artifactId> <version>1.5.3</version> </dependency> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjtools</artifactId> <version>1.8.7</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> <version>1.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>javax.annotation</groupId> <artifactId>javax.annotation-api</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> </dependency> <!-- hibernate start --> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> <version>4.2.3.Final</version> </dependency> <!-- hibernate end --> <!--c3p0 start --> <dependency> <groupId>c3p0</groupId> <artifactId>c3p0</artifactId> <version>0.9.1.2</version> </dependency> <!-- c3p0 end --> <!-- mysql start--> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.35</version> </dependency> <!-- mysql end--> </dependencies> <build> <finalName>MyWebDemo</finalName> </build> </project>
其中,注釋塊 <spring> <springmvc> <hibernate>中的依賴導(dǎo)入了框架核心jar包,我們可以提前導(dǎo)入,其他的我們可以根據(jù)提示或者需求進(jìn)行改動(dòng)。
比如,我的項(xiàng)目中使用的是mysql數(shù)據(jù)庫和c3p0數(shù)據(jù)源,所以引入MySQL和c3p0的依賴,如果你使用的是其他數(shù)據(jù)庫和數(shù)據(jù)源就需要做相應(yīng)的修改。
pom文件中為注釋的部分則是在項(xiàng)目運(yùn)行時(shí)提示的jar包缺失引入的依賴,有的是spring框架依賴的包,有的則是servlet或者jsp依賴的,如果第一次搭建時(shí)不熟悉可以先不導(dǎo)入,等報(bào)錯(cuò)時(shí)再引入依賴,這樣也可以加深理解。
這是框架整合最重要的部分。配置文件除了web.xml之外都放在main/resources文件夾中,當(dāng)然你也可以放在其他自己新建的文件夾下,不過配置文件地址要做相應(yīng)的修改,這個(gè)等會(huì)詳細(xì)說。
配置文件的配置,很多框架整合的教程都不太一樣的,這里給出我自己的配置方法和做法。
配置文件主要分為四個(gè):web.xm , beans.xml , spring-mvc.xml , datasource.xml 。
配置步驟分為兩步,spring-mvc和spring的整合,hibernate和spring的整合,最后再運(yùn)行項(xiàng)目。(這也是效率比較高的做法,分開整合,這樣即使運(yùn)行項(xiàng)目有報(bào)錯(cuò)也比較好找,而且分部整合不容易亂)
接下來就開始具體配置。
這是spring-mvc.xml配置文件:
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.1.xsd"> <mvc:annotation-driven /> <context:component-scan base-package="com.hcoding.demo" > <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller" /> <!-- 排除@service注解的類 --> <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service" /> </context:component-scan> <!-- 對(duì)模型視圖名稱的解析,在請(qǐng)求時(shí)模型視圖名稱添加前后綴 --> <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="viewClass" value="org.springframework.web.servlet.view.JstlView" /> <property name="prefix" value="demo/" /> <!-- 前綴 --> <property name="suffix" value=".jsp" /> <!-- 后綴 --> </bean> <!-- 對(duì)靜態(tài)資源的映射--> <mvc:resources mapping="/js/**" location="/resources/js/" /> <mvc:resources mapping="/css/**" location="/resources/css/" /> <mvc:resources mapping="/img/**" location="/resources/img/" /> </beans>
這是spring-mvc基本的配置,主要是對(duì)請(qǐng)求和靜態(tài)資源映射的配置。
注意點(diǎn):
1.需要特別注意的是掃描包時(shí)要排除service層的類,不然在整合hibernate后,項(xiàng)目運(yùn)行時(shí)會(huì)報(bào)錯(cuò)。
具體原因看一下這篇文章
2.然后就是如果你的包名和結(jié)構(gòu)不一樣的,那么掃描的包地址也要記得更換。
然后是web.xml配置文件:
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd" > <web-app> <display-name>MyWebDemo</display-name> <!-- 統(tǒng)一編碼 解決中文亂碼問題--> <filter> <filter-name>charsetEncoding</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>UTF-8</param-value> </init-param> <init-param> <param-name>forceEncoding</param-name> <param-value>true</param-value> </init-param> </filter> <filter-mapping> <filter-name>charsetEncoding</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <!-- spring MVC 配置--> <servlet> <servlet-name>spring</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <!-- 此處指向的的是SpringMVC的配置文件 如果配置文件地址和名稱不一樣需要更改--> <param-value>classpath:spring-mvc.xml</param-value> </init-param> <!--配置容器在啟動(dòng)的時(shí)候就加載這個(gè)servlet并實(shí)例化--> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>spring</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> <!-- spring MVC config end--> </web-app>
將spring-mvc配置文件加到web.xml中,當(dāng)服務(wù)器啟動(dòng)項(xiàng)目時(shí),才會(huì)加載springmvc。配置完成后寫個(gè)例子測(cè)試一下。
此時(shí)的項(xiàng)目結(jié)構(gòu):
-src
---main
------java(class文件)
----------com.hcoding.controller
----------com.hcoding.service
----------com.hcoding.dao
----------com.hcoding.model
------resources(配置文件)
----------spring-mvc.xml
------webapp(web文件)
----------demo(jsp文件)
----------resources(靜態(tài)資源文件:css,js,img)
----------WEB-INF (web相關(guān)配置文件)
先在controller包中創(chuàng)建DemoController,class:
package com.hcoding.demo.controller; import java.util.HashMap; import java.util.Map; import java.util.concurrent.TimeUnit; import javax.annotation.Resource; import javax.servlet.http.HttpServletRequest; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.servlet.ModelAndView; import com.alibaba.fastjson.JSON; import com.hcoding.demo.model.People; import com.hcoding.demo.service.DemoService; @Controller public class DemoController{ @RequestMapping("/test") public String test(){ return "test"; } }
然后在demo文件夾中創(chuàng)建demo.jsp:
<%@ page language="java" contentType="text/html; 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>Insert title here</title> </head> <body> <p>這是測(cè)試頁面。</p> </html>
啟動(dòng)項(xiàng)目,在瀏覽器中輸入地址:http://localhost:8080/(項(xiàng)目名)/test 。成功可以看到頁面。
datasource.xml配置文件:
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation=" http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd"> <!--配置數(shù)據(jù)源 這里是使用的是c3p0連接池--> <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close"> <property name="driverClass" value="${jdbc.driver}" /> <!--數(shù)據(jù)庫連接驅(qū)動(dòng)--> <property name="jdbcUrl" value="${jdbc.url}" /> <!--數(shù)據(jù)庫地址--> <property name="user" value="${jdbc.username}" /> <!--用戶名--> <property name="password" value="${jdbc.password}" /> <!--密碼--> <property name="maxPoolSize" value="40" /> <!--最大連接數(shù)--> <property name="minPoolSize" value="1" /> <!--最小連接數(shù)--> <property name="initialPoolSize" value="10" /> <!--初始化連接池內(nèi)的數(shù)據(jù)庫連接--> <property name="maxIdleTime" value="20" /> <!--最大空閑時(shí)間--> </bean> <!--配置session工廠--> <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean"> <property name="dataSource" ref="dataSource" /> <property name="packagesToScan" value="com.hcoding.demo" /> <property name="hibernateProperties"> <props>38 <prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop> <!--hibernate根據(jù)實(shí)體自動(dòng)生成數(shù)據(jù)庫表--> <prop key="hibernate.dialect">${hibernate.dialect}</prop> <!--指定數(shù)據(jù)庫方言--> <prop key="hibernate.show_sql">${hibernate.show_sql}</prop> <!--在控制臺(tái)顯示執(zhí)行的數(shù)據(jù)庫操作語句--> <prop key="hibernate.format_sql">${hibernate.format_sql}</prop> <!--在控制臺(tái)顯示執(zhí)行的數(shù)據(jù)哭操作語句(格式)--> </props> </property> </bean> <!-- 事務(wù)配置 聲明式事務(wù)--> <bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager"> <property name="sessionFactory" ref="sessionFactory" /> </bean> <!-- 使用annotation定義事務(wù) --> <tx:annotation-driven transaction-manager="transactionManager"/> </beans>
datasource.properties文件:
#database connection config jdbc.driver = com.mysql.jdbc.Driver jdbc.url = jdbc:mysql://localhost:3306/demo?useUnicode=true&characterEncoding=utf-8 jdbc.username = root jdbc.password = 123456 #hibernate config hibernate.dialect = org.hibernate.dialect.MySQLDialect hibernate.show_sql = true hibernate.format_sql = true hibernate.hbm2ddl.auto = update
beans.xml文件:
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p" xmlns:cache="http://www.springframework.org/schema/cache" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache-3.1.xsd"> <!-- 注解 --> <context:annotation-config /> <!--掃描--> <context:component-scan base-package="com.hcoding.demo"> <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller" /> </context:component-scan> <!-- 導(dǎo)入多個(gè)Properties配置文件 --> <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <list> <!--要是有多個(gè)配置文件,只需在這里繼續(xù)添加即可 --> <value>classpath:datasource.properties</value> </list> </property> </bean> 31 <!-- 加載數(shù)據(jù)源組件 --> 32 <import resource="classpath:datasource.xml" />33 34 </beans>
注意點(diǎn):在xml導(dǎo)入properties文件是比較常見,將一些相關(guān)的配置數(shù)據(jù)寫到properyties文件中也是常用的方法,利于修改。
常見的另一種導(dǎo)入propertise的方法:在<context:property-placeholder location="classpath:/datasource.properties" />。這種方法spring默認(rèn)值只導(dǎo)入一個(gè)properties,
當(dāng)有多個(gè)properties文件需要導(dǎo)入時(shí),則需要使用另一種方法:
<!-- 導(dǎo)入多個(gè)Properties配置文件 --> <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <list> <!--要是有多個(gè)配置文件,只需在這里繼續(xù)添加即可 --> <value>classpath:datasource.properties</value> <value>classpath:redis.properties</value> </list> </property> </bean>
個(gè)人比較推薦這種,隨著項(xiàng)目擴(kuò)展,需要導(dǎo)入的配置增多,肯定不止一個(gè)properties文件,這種方法更通用。
注意點(diǎn):datasource.properties文件中的數(shù)據(jù)庫地址,用戶和密碼根據(jù)自己的情況做相應(yīng)的修改。
修改之前的web.xml文件:
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd" > <web-app> <display-name>MyWebDemo</display-name> <!-- 統(tǒng)一編碼 解決中文亂碼問題--> <filter> <filter-name>charsetEncoding</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>UTF-8</param-value> </init-param> <init-param> <param-name>forceEncoding</param-name> <param-value>true</param-value> </init-param> </filter> <filter-mapping> <filter-name>charsetEncoding</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <!-- spring MVC 配置--> <servlet> <servlet-name>spring</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <!-- 此處指向的的是SpringMVC的配置文件 --> <param-value>classpath:spring-mvc.xml</param-value> </init-param> <!--配置容器在啟動(dòng)的時(shí)候就加載這個(gè)servlet并實(shí)例化--> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>spring</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> <!-- spring MVC config end--> <!-- 加載spring配置文件 --> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:beans.xml</param-value> </context-param> <!-- listener --> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> </web-app>
這就是spring整合hibernate所需要配置的四個(gè)文件。文件的加載順序和包含關(guān)系:web.xml→bans.xml→datasource.xml→datasource.properties
注意點(diǎn):如果你的配置文件名稱和存放位置不同,那么你也需要相應(yīng)的修改。
注意點(diǎn):一定要記得配置事務(wù),否則操作數(shù)據(jù)庫時(shí)項(xiàng)目可能不會(huì)報(bào)錯(cuò),但數(shù)據(jù)庫中的數(shù)據(jù)將不會(huì)更新(刪除或者修改)。具體可以自行百度事務(wù)相關(guān)的知識(shí)。
配置完成后寫個(gè)例子測(cè)試一下。
在model包中創(chuàng)建People.class:
package com.hcoding.demo.model; import java.util.Set; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.Table; import javax.persistence.Transient; @Entity @Table(name="people") public class People { @Id @Column(name="ID") private int id; @Column(name="name") private String name; @Column(name="sex") private String sex; public void setName(String name) { this.name = name; } public String getSex() { return sex; } public void setSex(String sex) { this.sex = sex; } }
并在數(shù)據(jù)庫創(chuàng)建people表格,添加相應(yīng)的字段。
然后在dao包中創(chuàng)建DemoDao.class:
package com.hcoding.demo.dao; import javax.annotation.Resource; import org.hibernate.SessionFactory; import org.springframework.stereotype.Repository; import com.hcoding.demo.model.People; @Repository("demoDao") public class DemoDao extends BaseSupportDao{ @Resource(name="sessionFactory") private SessionFactory sessionFactory; /** * 保存對(duì)象 * @param p * @return */ public People save(People p){ return (People) sessionFactory.getCurrentSession().save(p); } }
在service包中創(chuàng)建DemoServic.class:
package com.hcoding.demo.service; import java.util.HashSet; import java.util.Set; import javax.annotation.Resource; import org.springframework.data.redis.core.RedisTemplate; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import com.hcoding.demo.dao.DemoDao; import com.hcoding.demo.model.Book; import com.hcoding.demo.model.People; @Service("demoService") public class DemoService { @Resource(name="demoDao") private DemoDao demoDao;; @Transactional public void save(People p){ demoDao.save(p); } public People newPeople(){ People p=new People(); p.setName("小白"); p.setSex("男"); return p; } }
注意點(diǎn):在save方法上加@Transactional注解來開啟事務(wù)。
在DemoController.class中調(diào)用save方法保存數(shù)據(jù):
package com.hcoding.demo.controller; import java.util.HashMap; import java.util.Map; import java.util.concurrent.TimeUnit; import javax.annotation.Resource; import javax.servlet.http.HttpServletRequest; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.servlet.ModelAndView; import com.alibaba.fastjson.JSON; import com.hcoding.demo.model.People; import com.hcoding.demo.service.DemoService; @Controller public class DemoController{ @Resource(name="demoService") private DemoService demoService; @RequestMapping("/test") public String test(){ People p=demoService.newPeople(); demoService.save(p); return "test"; } }
啟動(dòng)服務(wù)器,訪問項(xiàng)目。刷新數(shù)據(jù)庫,如果數(shù)據(jù)保存到數(shù)據(jù)庫中了,說明框架搭建完成。
以上就是框架整合的全過程,也是自己看了很多教程和自己搭了很多遍后整理的,基本上配置文件是比較整潔,沒有多余的內(nèi)容(因?yàn)楹苋菀子捎诓欢?,依樣畫葫蘆莫名其妙寫了些沒有的內(nèi)容進(jìn)去),大部分內(nèi)容也有說明作用,也說了一些需要注意的,我自己犯過錯(cuò)地方。
當(dāng)然,如果你是第一次搭建框架,那么問題遠(yuǎn)沒有那么少,遇到問題就多百度吧,當(dāng)然,在這之前對(duì)于spring框架還是要多了解一點(diǎn)會(huì)更利于學(xué)習(xí)。另外,項(xiàng)目是全注解的,所以對(duì)注解不太了解也可以自行百度一下。
關(guān)于如何進(jìn)行spring+springmvc+hibernate整合就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。