在前面的几篇文章中,我分别写了 Mybatis 、Spring、Spring MVC 入门相关技术的几篇文章,css
而这三个框架进行整合,就是咱们常说的 SSM ,仍是有不少项目使用 SSM 进行开发的,今天咱们要介绍的就是如何整合使用SSMhtml
若是有须要的小伙伴,也能够去参考我前一段时间针对这几个框架 写过的一些入门类型的文章,都是适合入门朋友看的,技术含量或许不高,大佬轻喷哈前端
图片自己是高清的,可是因为 部分社区的 markdown 不支持 img百分比的调配大小,固定大小图片过多的时候也很麻烦,因此若是对图片不够满意的小伙伴,能够去我公众号或者博客里面看也能够java
在前面分别讲解 Mybatis 、Spring、Spring MVC 的时候,都有介绍几种不一样的配置方式mysql
① 纯 XML ② 注解 + XML ③ 纯注解web
我最经常使用的方式,仍是第二个,即注解 + XML,固然这一种也是比较流行的配置方式,因此下文咱们按照这种方式进行介绍spring
数据库和表,并非固定的,能够本身随便创,下列建立的算是一个最简单的库和表,不过实际上不是很规范,只是为了尽量让你们看得懂,就三个字段 编号、姓名、余额sql
下面给了几条数据,方便等一会测试数据库
-- 建立数据库 CREATE DATABASE ssm; -- 使用数据库 USE ssm; /*==============================================================*/ /* Table: account */ /*==============================================================*/ CREATE TABLE account( id INT PRIMARY KEY AUTO_INCREMENT, name VARCHAR(32), balance DOUBLE ); -- ---------------------------- -- Records of account -- ---------------------------- INSERT INTO `account` VALUES (1, '张三', 1000); INSERT INTO `account` VALUES (2, '李四', 1000); INSERT INTO `account` VALUES (3, '王五', 1000); INSERT INTO `account` VALUES (4, '汤姆', 2000);
若是是一步一步学到这里的朋友,应该都是有接触过Maven的,不过或许仍有一些朋友没接触过,仍选择将 jar 包放在 lib 文件夹下,这种方式固然可行,不过去找对应的 jar 包实际是相对繁琐的,并且若是是对于多人的开发中,jar 包版本的不一样,可能会致使其余依赖的 jar 包版本也发生变化,错误的引入可能会出现一些版本致使的兼容问题,因此使用Maven仍是很是有必要的,没有接触过的朋友,我仍是推荐去了解一下的express
① 首先建立一个 Maven 项目
选择使用骨架 maven-archetype-webapp ,这是咱们建立一个Web 比较经常使用的骨架
② 接着选择下一步
GroupID 是项目组织惟一的标识符,通常来讲能够设置的与包结构一致,也就是 main 目录里java 的目录结构,能够设置为域名的倒序,固然这不是强制的,例如我设置为 cn.ideal
ArtifactID 就是项目的惟一的标识符,通常设置为项目的名称
正是经过这两个值,造成了一个 “坐标” ,能保证项目的惟一性
③ 继续下一步
下面显示的就是 Maven 仓库的一些信息
可是,因为建立 maven archetype 的缘由,在建立时,会执行 mvn archetype:generate这个命令,这样就须要指定一个 archetype-catalog.xml 文件,命令中参数 -DarchetypeCatalog 的值有三种
咱们须要作的就是添加这样一组键值对,就能够加快建立项目的速度
④ 继续下一步,没什么好说的直接 Finish
首先将版本从 1.7 --> 1.8
还能够看到咱们上面给出了一些 <xxx.version>几点几</xxx.version>
的标签,这叫作版本锁定,统一将版本放在这里管理,例如之后须要更换依赖版本,就不须要一个一个去改,直接在这里修改一次就能够了
<properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <spring.version>5.0.2.RELEASE</spring.version> <slf4j.version>1.6.6</slf4j.version> <log4j.version>1.2.12</log4j.version> <mysql.version>5.1.6</mysql.version> <mybatis.version>3.4.5</mybatis.version> </properties>
下面是具体的依赖,版本使用 ${xxx.version}
引用,例如 ${spring.version}
<dependencies> <!-- spring --> <!-- aop相关的技术 --> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <version>1.6.8</version> </dependency> <!-- aop --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> <version>${spring.version}</version> </dependency> <!-- context容器 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring.version}</version> </dependency> <!-- web --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>${spring.version}</version> </dependency> <!-- webmvc --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>${spring.version}</version> </dependency> <!-- spring测试 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${spring.version}</version> </dependency> <!-- 事务 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>${spring.version}</version> </dependency> <!-- jdbc模板技术 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>${spring.version}</version> </dependency> <!-- 单元测试 --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>compile</scope> </dependency> <!-- mysql链接 --> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>${mysql.version}</version> </dependency> <!-- servlet --> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <!-- jsp --> <dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>jsp-api</artifactId> <version>2.0</version> <scope>provided</scope> </dependency> <!-- EL JL TL表达式 --> <dependency> <groupId>jstl</groupId> <artifactId>jstl</artifactId> <version>1.2</version> </dependency> <!-- log start --> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>${log4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j.version}</version> </dependency> <!-- log end --> <!-- mybatis相关 --> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>${mybatis.version}</version> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis-spring</artifactId> <version>1.3.0</version> </dependency> <!-- druid 链接池 --> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.0.9</version> </dependency> </dependencies>
使用上述方式,刚建立好的项目,目录结构是不完整的,须要进行补充,在 main 文件夹下 建立 java 和 resources 两个文件夹,而后分别对其右键,找到 Mark Directory as 分别选择 Sources Root 和 Resources Root
固然也能够继续将java文件夹下的基本包结构建立出来,固然这不是如今必须的,放在后面也能够,下面我扔一张我文中的结构图
建立好了包结构,以及为了后面的演示,就把根据咱们开篇建立的数据库和表建立出实体类,而后给出 Service 和 Dao 下的一些基本方法
Account 实体类
根据数据库中的字段创出实体
package cn.ideal.domain; import java.io.Serializable; public class Account implements Serializable { private Integer id; private String name; private Double balance; ......省略 get set 以及 toString 方法 自行补充便可 }
AccountService 和 AccountServiceImpl
public interface AccountService { /** * \查询全部 * @return */ List<Account> findAll(); /** * 添加帐户 * @param account */ void addAccount(Account account); }
暂时只给出方法的定义和简单实现就行了,实现就加个输出语句,测试能够直观一点
public class AccountServiceImpl implements AccountService { public List<Account> findAll() { System.out.println("这是业务层——查询全部帐户方法"); return null; } public void addAccount(Account account) { System.out.println("这是业务层——添加帐户方法"); } }
AccountDao
注意:这里的Dao可不须要实现类,咱们今天持久层是要使用 Mybatis的技术
public interface AccountDao { /** * \查询全部 * @return */ public List<Account> findAll(); /** * 添加帐户 * @param account */ public void addAccount(Account account); }
AccountController
public class AccountController { }
到这里位置,一个基本的环境以及结构就搭建好了,下面就能够开始,编写咱们三个框架的代码代码了,咱们选择的方式是,逐个编写,测试无误后,而后进行整合
首先咱们先将 Spring 相关的基本搭建出来
首先建立一个applicationContext.xml 配置文件
引入XML配置的一些约束等头部引用,为了使用 IOC ,同时开启注解扫描,咱们将 Service 和 Dao 所有交给 Spring 来管理,可是 Controller 咱们要使用 Spring MVC 进行管理,因此要配置扫描略过 Controller
<?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:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd"> <!-- 开启注解扫描,处理service和dao,可是不须要处理 controller --> <context:component-scan base-package="cn.ideal"> <!-- 配置哪些注解不扫描 --> <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/> </context:component-scan> </beans>
在ServiceImpl 上增长业务层注解
@Service("accountService") public class AccountServiceImpl implements AccountService { public List<Account> findAll() { System.out.println("这是业务层——查询全部帐户方法"); return null; } public void addAccount(Account account) { System.out.println("这是业务层——添加帐户方法"); } }
测试 Spring
仍是一套老流程 test 包下简单写测试程序,这里使用的直接是 Junit ,固然还能够配合Spring的单元测试,简化一下,这在我前面Spring中的文章也提过
public class TestSpring { @Test public void testFindAll(){ //加载配置 ApplicationContext ac = new ClassPathXmlApplicationContext("classpath:applicationContext.xml"); AccountService as = (AccountService) ac.getBean("accountService"); as.findAll(); } }
能打印出话,表明 Spring 就基本配置成功了
首先修改 webapp --> WEB-INF 文件下的 web.xml
在 <web-app></web-app>
中进行配置 ,配置的大体意思就是,服务器启动就加载前端控制器,而后加载 springmvc.xml 这个配置文件(如今尚未,下面就准备建立),而且设置全部请求都要通过这里
<!--配置前端控制器--> <servlet> <servlet-name>dispatcherServlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <!--加载springmvc.xml配置文件--> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:springmvc.xml</param-value> </init-param> <!--启动服务器,建立该servlet--> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>dispatcherServlet</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping>
这个没什么好说的,就是为了统一解决中文乱码问题
<!--配置过滤器,解决中文乱码--> <filter> <filter-name>characterEncodingFilter</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> </filter> <filter-mapping> <filter-name>characterEncodingFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping>
这里有一个小 Tips ,若是写完后, <web-app></web-app>
标签报红,可是也不影响使用,问题就是在于配置的顺序问题,顺序依据下面的要求来放就能够了,例如应该把过滤器放到前端控制器前面去
"(icon?,display-name?,description?,distributable?,context-param ,filter,filter-mapping ,listener,servlet ,servlet-mapping,session-config?,mime-mapping ,welcome-file-list?,error-page,taglib ,resource-env-ref,resource-ref ,security-constraint,login-config?,security-role ,env-entry,ejb-ref ,ejb-local-ref)"
这里算是 Spring MVC 一个核心的配置了,开启扫描,注解,还有解析视图的,以及防止 css js 等静态文件被过滤的(报红意味着你没建立这几个文件夹,创出来就行了),固然有些(例如不过滤静态资源)可能你测试的时候也用不到,可是最好先配上吧,省着后面麻烦
注:视图解析器路径须要根据本身的来写,例如我在WEB-INF 下建立了名为了pages的文件夹 /WEB-INF/pages/
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context" 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.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> <!--开启只对controller的扫描--> <context:component-scan base-package="cn.ideal"> <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/> </context:component-scan> <!--配置视图解析器--> <bean id="org" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <!--JSP 目录--> <property name="prefix" value="/WEB-INF/pages/"/> <!--文件后缀--> <property name="suffix" value=".jsp"/> </bean> <!--不过滤静态资源--> <mvc:resources mapping="/css/**" location="/css/"/> <mvc:resources mapping="/images/**" location="/images/"/> <mvc:resources mapping="/js/**" location="/js/"/> <!--开启注解支持--> <mvc:annotation-driven/> </beans>
给出一个基本的测试方法,打印语句,同时经过视图解析器,跳转到 list_account 页面
@Controller @RequestMapping("/account") public class AccountController { @RequestMapping("/findAll") public String findAll(){ System.out.println("这是控制层——查询全部帐户的方法"); return "list_account"; } }
① 在 webapp 文件夹下建立 index.jsp页面
注:默认是有一个index.jsp的可是不太完整,最好删掉从新建立一个标准的jsp,否则会有乱码等一些问题
<%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>主页</title> </head> <body> <h2>主页</h2> <a href="account/findAll">查询全部</a> </body> </html>
② 在 webapp --> WEB-INF 下建立文件夹 名为 pages的文件夹,而后建立 list_account.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %> <html> <head> <title>查询全部</title> </head> <body> <h3>恭喜跳转成功,这是查询全部帐户页面</h3> </body> </html>
当在浏览器中访问 http://localhost:8080/ssm
(ssm是部署tomcat配的) 经过连接能够跳转的时候,就表明Spring MVC 环境基本搭建成功了
从如今的测试来看,经过Spring已经能够访问调用Service,Controller 相关的配置也已经经过Spring MVC作好了,这一部分,就将已有的两部分整合,也就是经过 Controller 去访问调用 Service中的方法
经过对 Spring MVC 的代码编写,咱们知道,在服务器启动的时候就回去加载 springmvc.xml 这个配置,如今咱们就须要继续在 web.xml 中配置,使得在项目启动的时候,就去加载applicationContext.xml的配置文件
因此咱们能够在 web.xml 中,配置spring核心监听器,它默认会以 /WEB-INF/applicationContext.xml做为配置文件
<!--配置 Spring 的监听器--> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <!--设置配置文件路径--> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext.xml</param-value> </context-param>
注:web-app 标签报红的话仍是要注意顺序问题,上面有说
@Controller @RequestMapping("/account") public class AccountController { @Autowired private AccountService accountService; @RequestMapping("/findAll") public String findAll(Model model){ System.out.println("控制层:查询全部帐户"); accountService.findAll(); return "list_account"; } }
若是访问后,能够跳转成功,同时控制台打印出两句话,一句控制层的输出语句,一句业务层的输出语句,这两部分就算整合成功了
建立 SqlMapConfig.xml 配置文件,也就是MyBatis 的主配置文件(固然整合后就不须要了)
这些都是基本的,和原来是没什么区别的,咱们这里选择的是注解的配置sql,固然你也能够选择 xml 配置 sql
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd"> <configuration> <environments default="mysql"> <environment id="mysql"> <transactionManager type="JDBC"></transactionManager> <dataSource type="POOLED"> <property name="driver" value="com.mysql.jdbc.Driver"/> <property name="url" value="jdbc:mysql:///ssm"/> <property name="username" value="root"/> <property name="password" value="root99"/> </dataSource> </environment> </environments> <!--使用注解--> <mappers> <package name="cn.ideal"/> </mappers> </configuration>
这里将sql经过注解配置,由于比较演示简单,这里除了查询全部,又增长了一个添加的方法,这里本身看着写就行了,写什么功能测试都是能够的
@Repository public interface AccountDao { /** * \查询全部 * @return */ @Select("SELECT * FROM account") public List<Account> findAll(); /** * 添加帐户 * @param account */ @Select("INSERT INTO account (name,balance) VALUES (#{name},#{balance})") public void addAccount(Account account); }
public class TestMybatis { private InputStream inputStream; private SqlSession sqlSession; private AccountDao accountDao; /* 单独测试Mybatis时所用,整合后 SqlMapConfig.xml文件就再也不使用了 配置到 applicationContext.xml */ @Before public void init() throws Exception{ //加载配置文件 inputStream = Resources.getResourceAsStream("SqlMapConfig.xml"); // 建立 SqlSessionFactory 对象 SqlSessionFactory factory = new SqlSessionFactoryBuilder().build(inputStream); //建立 SqlSession 对象 sqlSession = factory.openSession(); accountDao = sqlSession.getMapper(AccountDao.class); } @After public void destroy() throws Exception { //提交事务 sqlSession.commit(); sqlSession.close(); inputStream.close(); } @Test public void TestFindAll(){ List<Account> accounts = accountDao.findAll(); for (Account account : accounts){ System.out.println("----------------------"); System.out.println(account); } } @Test public void TestAddAccount(){ Account account = new Account(); account.setName("测试"); account.setBalance(800d); accountDao.addAccount(account); } }
这一步就是将 SqlMapConfig.xml 配置文件中的内容配置到 applicationContext.xml 配置文件中去,MyBatis 就再也不独立了,被整合到了 Spring中去
有一点区别就是,咱们在 resources 文件夹下建立了 config 的文件夹,而后建立了druid.properties文件吗,也就是将数据库例如用户名密码配置到了 properties 中,后期维护等就更加方便了,固然使用前须要像下面同样开始扫描 properties文件
<!--扫描Resources中的相关properties文件--> <context:property-placeholder location="classpath:config/*.properties" ignore-unresolvable="true"/> <!--Spring 整合 MyBatis--> <!--配置数据库链接池--> <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource"> <!-- 数据库基本信息配置 --> <property name="url" value="${druid.jdbc.url}" /> <property name="username" value="${druid.jdbc.username}" /> <property name="password" value="${druid.jdbc.password}" /> <property name="driverClassName" value="${druid.jdbc.driver}" /> </bean> <!--配置SqlSessionFactory工厂--> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="dataSource" ref="dataSource"/> </bean> <!--配置AccountDao接口所在包--> <bean id="mapperScanner" class="org.mybatis.spring.mapper.MapperScannerConfigurer"> <property name="basePackage" value="cn.ideal.dao"/> </bean>
druid.properties
druid.jdbc.url=jdbc:mysql://localhost:3306/ssm druid.jdbc.driver=com.mysql.jdbc.Driver druid.jdbc.username=root druid.jdbc.password=root99
① 测试以前
须要确认一下,AccountDao 中是否已经添加了 @Repository 注解,前面我已经加上了,若是没有,如今加上就能够了
② 接着在Service 中注入 Dao
@Service("accountService") public class AccountServiceImpl implements AccountService { @Autowired private AccountDao accountDao; public List<Account> findAll() { System.out.println("这是业务层——查询全部帐户方法"); return accountDao.findAll(); } public void addAccount(Account account) { System.out.println("这是业务层——添加帐户方法"); accountDao.addAccount(account); } }
③ 控制层测试
在控制层中,去调用业务层,而后执行到 Dao 中的 sql,你要嫌麻烦,就只测试查询全部也成
查询全部中,添加了 Model 参数,而后把查询到的 list 写入
@Controller @RequestMapping("/account") public class AccountController { @Autowired private AccountService accountService; @RequestMapping("/findAll") public String findAll(Model model){ System.out.println("这是控制层——查询全部帐户的方法"); List<Account> list = accountService.findAll(); model.addAttribute("accounts",list); return "list_account"; } @RequestMapping("/add") public void add(Account account, HttpServletRequest request, HttpServletResponse response) throws IOException { accountService.addAccount(account); response.sendRedirect(request.getContextPath()+"/account/findAll"); return; } }
④ 页面编写
为了测试增长方法,再加一个表单用来输入信息
index.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>Title</title> </head> <body> <h2>主页</h2> <a href="account/findAll">查询全部</a> <form action="account/add" method="post"> 姓名:<input type="text" name="name" /><br/> 余额:<input type="text" name="balance" /><br/> <input type="submit" value="添加"/><br/> </form> </body> </html>
list_account.jsp
这里随便写一个遍历,把数据库中的姓名信息都查出来
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %> <html> <head> <title>Title</title> </head> <body> <h3>查询全部帐户</h3> <c:forEach items="${accounts}" var="account"> ${account.name} </c:forEach> </body> </html>
在applicationContext.xm中添加事务的相关配置,这些在之前Spring AOP文章都有详细讲解过,事务也就交给 Spring 管理了
<!--配置Spring框架声明式事务管理--> <!--配置事务管理器--> <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource" /> </bean> <!--配置事务通知--> <tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <tx:method name="find*" read-only="true"/> <tx:method name="*" isolation="DEFAULT"/> </tx:attributes> </tx:advice> <!--配置AOP加强--> <aop:config> <aop:advisor advice-ref="txAdvice" pointcut="execution(* cn.ideal.service.impl.*ServiceImpl.*(..))"/> </aop:config>
最后给你们附一张,结构图,若是有须要的朋友能够参考一下哈
到这里 Mybatis 、Spring、Spring MVC 这三个框架的整合也就完成了,只要对这三个框架的使用和配置都有了解和学习,整合起来其实是没有什么技术上的难度的,只是综合到一块儿,可能会感受有一点繁琐复杂,多加练习就能够了,对你们能有一些帮助,自己不是很复杂,源码也没往上传,若是有须要的朋友能够在下面留言,我后期传上去
感谢你们的支持!!! 谢谢你们!!!
若是文章中有什么不足,欢迎你们留言交流,感谢朋友们的支持!
若是能帮到你的话,那就来关注我吧!若是您更喜欢微信文章的阅读方式,能够关注个人公众号
在这里的咱们素不相识,却都在为了本身的梦而努力 ❤一个坚持推送原创开发技术文章的公众号:理想二旬不止