springboot management,springboot项目运行流程

  springboot management,springboot项目运行流程

  00-1010准备1。创建新项目2。导入静态资源3。创建实体类4。写dao层的主页,实现中英文切换自定义区1中解析器组件的登录功能。调整第2页。写入LoginController3。登录拦截员工信息3354。查看员工信息3354。添加员工信息3354。更改员工信息3354。删除错误页面自定义。

  

目录

  

准备工作

  接下来,选择SpringWeb和百里香,然后直接进入下一步并完成。

  之后,我们将测试建筑是否成功。

  好了,我们已经创建了项目。

  00-1010根据下图导入资源。

  00-1010先来导入龙目岛。

  依赖关系groupIdorg.projectlombok/groupId工件ID lombok/工件ID版本1.18.20/version/dependency创建pojo的包,并在它下面创建两个实体类Department和Employee。

  进口龙目岛。AllArgsConstructor进口龙目岛。数据;进口龙目岛。NoArgsConstructor//Department table @ data @ allargsconstructor @ noargsconstructor公共类department { private integer id私有字符串departmentName}导入龙目岛。AllArgsConstructor进口龙目岛。数据;进口龙目岛。NoArgsConstructor导入Java . util . date;//employee table @ data @ allargsconstructor @ noargsconstructor公共类employee { private integer id私有字符串employeeName私人字符串电子邮件;私有整数性别;//03360女1:男私部部门;私人出生日期;}遇到的问题:有些人会遇到这个问题。为什么我的lombok是用它的方法导入生成的,但是最后不能用,就像下面这种情况?

  其实不要以为那三行是你写的。我们打开结构看一看,发现虽然写了,但是还是没有办法。这是为什么呢?

  其实是因为你的想法里没有Lombok的插件。你只需要在设置-插件-搜索lombok-安装中重启思路即可。

  最后看结果。

  00-1010同样构建包dao,并在其下创建DepartmentDao和EmployeeDao。

  导入com . hxl . POJO . department;导入org . spring framework . stereotype . repository;重要

  t java.util.Collection;import java.util.HashMap;import java.util.Map;//部门dao//注册到IOC容器中@Repositorypublic class DepartmentDao { //模拟数据库中的数据 private static Map<Integer, Department> departments = null; static { departments = new HashMap<Integer, Department>(); departments.put(1, new Department(1, "教学部")); departments.put(2, new Department(2, "市场部")); departments.put(3, new Department(3, "调研部")); departments.put(4, new Department(4, "后勤部")); departments.put(5, new Department(5, "运营部")); } //获得所有部门信息 public Collection<Department> getDepartments(){ return departments.values(); } //通过id得到部门 public Department getDepartmentById(Integer id){ return departments.get(id); }}

import com.hxl.pojo.Department;import com.hxl.pojo.Employee;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Repository;import java.util.Collection;import java.util.Date;import java.util.HashMap;import java.util.Map;//员工dao//注册到IOC容器中@Repositorypublic class EmployeeDao { //模拟数据库中的数据 static private Map<Integer, Employee> employees = null; //员工所属的部门 @Autowired private DepartmentDao departmentDao; static { employees = new HashMap<Integer, Employee>();//创建一个员工表 employees.put(1, new Employee(1, "hxl", "1234@qq.com", 1, new Department(1, "教学部"), new Date())); employees.put(2, new Employee(2, "zmc", "5678@qq.com", 1, new Department(2, "市场部"), new Date())); employees.put(3, new Employee(3, "kwb", "9012@qq.com", 0, new Department(3, "调研部"), new Date())); employees.put(4, new Employee(4, "lqs", "3456@qq.com", 1, new Department(4, "后勤部"), new Date())); employees.put(5, new Employee(5, "wjr", "7890@qq.com", 1, new Department(5, "运营部"), new Date())); } //主键自增 private static Integer initialId = 6; //增加一个员工 public void addEmployee(Employee employee) { if (employee.getId() == null) { employee.setId(initialId++); } employee.setDepartment(departmentDao.getDepartmentById(employee.getDepartment().getId())); employees.put(employee.getId(), employee); } //查询全部员工信息 public Collection<Employee> getAllEmployees() { return employees.values(); } //通过id查询员工 public Employee getEmployeeById(Integer id) { return employees.get(id); } //通过id删除员工 public void deleteEmployeeById(int id) { employees.remove(id); }}
至此我们的准备工作就完成了。

  

  

首页实现

首先我们像之前创建一个config的包用来存放自定义的配置

  创建一个MyMvcConfig的配置类,进行首页的视图跳转

  

import org.springframework.context.annotation.Configuration;import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;@Configurationpublic class MyMvcConfig implements WebMvcConfigurer { @Override public void addViewControllers(ViewControllerRegistry registry) { //添加一个,打了"/",然后让他去index registry.addViewController("/").setViewName("index"); registry.addViewController("index.html").setViewName("index"); }}
启动程序,进行测试访问localhost:8080/或者locahost:8080/index.html出现下面的界面就ok了

  

  在这块中,我们发现仅有一些文字,样式图片等都没有加载出来,这是因为我们之前导入的静态资源的html,没有使用Thymeleaf的的语法。我们的模板引擎为Thymeleaf

  我们将之前导入的html里面的都改为thymeleaf语法。

  注意所有html都需要引入Thymeleaf命名空间

  

<xmlns:th="http://www.thymeleaf.org">
然后修改所有页面静态资源的引入,使用@{...} 链接表达式(只要是自己本地的链接资源,都需要根据这个语法来修改)

  在标签前增加th:

  以index.html为例

  注意:第一个/代表项目的classpath,也就是这里的resources目录

  

  修改之后我们再次运行

  

  

  

中英文切换

首先我们要保证我们的编码是UTF-8

  

  Properties编写

  接下来我们进行配置编写,在resources目录下创建一个文件夹i18n,然后在其下创建一个login.propertieslogin_zh_CN.properties创建完成后发现他们两个合并了。

  这样我们就有了默认配置和中文的配置,接下来再创建一个英语的,来看步骤:

  

  

  

  这样我们就有了三个文件。展示操作的时候到了

  首先点击这里,可以让我们拥有可视化操作。没有可视化选项的兄弟下载插件Flagiarism然后重启就可以了

  

  接下来将我们的内容一次创建

  直接点击+号,创建文件名和输入内容即可。

  

  之后我们就会发现这里也会增加内容。

  

  接下来按照图片一次进行创建

  

  

  

  

  这里展示一个内容

  login.properties

  

login.btn=登录login.password=密码login.remember=记住我login.tip=请登录login.username=用户名
login_en_US.properties

  

login.btn=Sign inlogin.password=Passwordlogin.remember=Remember melogin.tip=Please sign inlogin.username=Username
我们设置完之后,该怎么让我们的项目识别呢。需要在我们的application.properties下进行绑定

  

# 我们的配置文件的真实位置spring.messages.basename=i18n.login
源码分析:

  我们去MessageSourceAutoConfiguration这个类下,查看messageSource该方法

  

public MessageSource messageSource(MessageSourceProperties properties);
可以看到,他的参数是一个MessageSourceProperties对象,我们继续查看,它首先是一个属性basename,默认值为message

  如果你不在springboot配置文件中指定以.分隔开的国际化资源文件名称的话它默认会去类路径下找messages.properties作为国际化资源文件这也就是我们为什么要在配置文件中进行配置。

  后面好了,那么我们的html页面该怎么进行呢。查阅资料发现Thymeleaf中取值需要进行使用到#{}例如

  

<th:text="#{login.tip}">

  

  根据上述步骤将其他的几处也进行修改

  

  最后的效果

  

  接下来就是可以中英文进行切换,此时需要加一个组件

  在我们的首页界面中可以看到我们的两个中英文标签

  

<a class="btn btn-sm">中文</a><a class="btn btn-sm">English</a>
此时我们需要对其加上跳转链接同时加上参数,原来我们的参数是现在不需要,用的是()

  

<a class="btn btn-sm" th:href="@{/index.html(l=zh_CN)}" rel="external nofollow" >中文</a><a class="btn btn-sm" th:href="@{/index.html(l=en_US)}" rel="external nofollow" >English</a>

  

自定义地区的解析器组件

在spring中,有两个关于国际化的类,一个是代表地区的Locale,每一个对象都代表了特定的区域,还有一个关于地区解析器LocaleResolver

  首先搜索WebMvcAutoConfiguration,可以在其中找到关于一个方法localeResolver()

  

@Bean@ConditionalOnMissingBean@ConditionalOnProperty(prefix = "spring.mvc", name = "locale")public LocaleResolver localeResolver() { //如果用户配置了,则使用用户配置好的,容器中没有就自己配,有就用用户的 if (this.mvcProperties.getLocaleResolver() == WebMvcProperties.LocaleResolver.FIXED) { return new FixedLocaleResolver(this.mvcProperties.getLocale()); } //用户没有配置,则使用默认的,接收头 国际化分解 AcceptHeaderLocaleResolver localeResolver = new AcceptHeaderLocaleResolver(); localeResolver.setDefaultLocale(this.mvcProperties.getLocale()); return localeResolver;}
该方法就是获取LocaleResolver地区对象解析器:

  如果用户配置了则使用用户配置的地区解析器;如果用户没有配置,则使用默认的地区解析器可以发现它继承了LocaleResolver接口,实现了地区解析

  因此我们想要实现上述自定义的国际化资源生效,只需要编写一个自己的地区解析器,继承LocaleResolver接口,重写其方法即可

  在config包下新建一个MyLocaleResolver

  

package com.hxl.config;import org.springframework.util.StringUtils;import org.springframework.web.servlet.LocaleResolver;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import java.util.Locale;public class MyLocaleResolver implements LocaleResolver { @Override public Locale resolveLocale(HttpServletRequest httpServletRequest) { //获取请求中的国际化参数 String language = httpServletRequest.getParameter("l"); //默认的地区 Locale locale = Locale.getDefault(); //如果请求的链接参数不为空,携带了国际化参数 if (!StringUtils.isEmpty(language)) { String[] split = language.split("_");//zh_CN(语言_地区) locale = new Locale(split[0], split[1]); } return locale; } @Override public void setLocale(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Locale locale) { }}
完成组件后,需要在MvcConfig配置类下添加上我们的Bean

  

//自定义的国际化组件生效@Beanpublic LocaleResolver localeResolver() { return new MyLocaleResolver();}
重新启动项目,我们就可以通过点击下方的中英文来进行切换。

  

  

  总结

  我们需要配置i18n文件需要自定义一个组件MyLocaleResolver,以便在项目中进行按钮的自动切换。将自己的组件配置到spring容器中@Bean取值用的是#{}

  

登录功能

  

1.页面调整

我们需要将这里进行修改。

  查看页面之后发现,我们点击登录按钮的时候会进入dashboard页面。

  所以我们需要将这里的提交地址进行修改,以及将用户名和密码框加上属性以便传参。

  

  

  

  

2.编写LoginController

import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestParam;@Controllerpublic class LoginController { @RequestMapping("/user/login") public String login(@RequestParam("username") String username,@RequestParam("password") String password, Model model){ //如果用户名和密码都正确 if("wangmm".equals(username) && "123456".equals(password)){ return "dashboard"; }else{ //如果用户名或者密码不正确 model.addAttribute("msg","用户名或者密码不正确"); return "index"; } }}
我们需要在登录页面增加一个返回错误信息的标签。

  

  此时启动程序并访问localhost:8080。输入正确的账号密码访问我们可以看到这个页面

  

  输入错误的账号密码会呈现

  

  好了,我们这里已经成功了。但是当我们成功登录后我们的页面显示不全,这是因为之前提到的静态页面展示的问题,需要把我们dashboard页面下的本地静态资源都用Thymeleaf语法进行修改。修改成功后即可。

  

  同时我们可以到浏览器页面的url暴露了我们的信息。所以我们需要进行修改。

  在自定义的配置类MyMvcConfig中增加。这样我们访问main.html也就是访问了dashboard页面。

  

registry.addViewController("/main.html").setViewName("dashboard");
同时我们也要去将LoginController下的登录页面也重定向到main.html中。

  

@Controllerpublic class LoginController { @RequestMapping("/user/login") public String login(@RequestParam("username") String username,@RequestParam("password") String password, Model model){ //如果用户名和密码都正确 if("wangmm".equals(username) && "123456".equals(password)){ return "redirect:/main.html"; }else{ //如果用户名或者密码不正确 model.addAttribute("msg","用户名或者密码不正确"); return "index"; } }}
之后我们运行查看,浏览器上的url不再携带用户的信息。

  

  此时出现了新的问题,就是我们不管登录不登录,通过localhost:8080/main.html都可以访问到我们的dashboard的页面。

  

  

3.登录拦截器

config目录下,新建一个登录拦截器类LoginHandlerInterceptor

  目的:用户登录成功后得到用户的信息。防止未登录用户查看页面

  得到用户信息,我们需要先保存用户的信息,所以我们需要在LoginController中当用户登录成功后,存入用户信息到session

  

@Controllerpublic class LoginController { @RequestMapping("/user/login") public String login(@RequestParam("username") String username,@RequestParam("password") String password, Model model, HttpSession session){ //如果用户名和密码都正确 if("wangmm".equals(username) && "123456".equals(password)){ session.setAttribute("LoginUser", username); return "redirect:/main.html"; }else{ //如果用户名或者密码不正确 model.addAttribute("msg","用户名或者密码不正确"); return "index"; } }}
实现拦截器。需要继承HandlerInterceptor接口

  

import org.springframework.web.servlet.HandlerInterceptor;import org.springframework.web.servlet.ModelAndView;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;public class LoginHandlerInterceptor implements HandlerInterceptor { @Override public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { //用户登录成功拥有session Object loginUser = request.getSession().getAttribute("LoginUser"); if(loginUser == null){ request.setAttribute("msg","用户权限不够,请登录"); //权限不够就重定向到首页 request.getRequestDispatcher("/index.html").forward(request,response); return false; }else{ return true; } }}
有了拦截器就需要注册到bean中,在MyMvcConfig配置类中,添加我们自定义的拦截器,注意屏蔽主页、登录相关请求、静态资源的拦截

  

@Overridepublic void addInterceptors(InterceptorRegistry registry) { registry.addInterceptor(new LoginHandlerInterceptor()) .addPathPatterns("/**") .excludePathPatterns("/index.html", "/", "/user/login", "/asserts/**");}
注意这个地方,有些人不是在整一个文件夹中,所以需要分开写"/css/**", "/js/**", "/img/**"

  

  测试:启动程序直接访问http://localhost:8080/main.html

  

  之后我们登录,成功之后再重新进入之前的链接http://localhost:8080/main.html发现也是可以访问得到的。

  

  这是因为登录之后用户的信息已经保存在了session中。拦截器自然不会拦截。

  

  

员工信息——查

实现界面中的Customers中的员工查询。

  th:fragment="sidebar"th:replace="~{commons/commons::topbar}"如果要传递参数,可以直接使用()传参,接收判断即可列表循环展示首先我们先将模板中的跳转链接进行跳转

  

  同时将list.html中的代码进行修改

  

  在templates目录下新建一个包emp用来存放员工的相关页面

  

  之后我们编写对应的Controller

  

package com.hxl.controller;import com.hxl.dao.EmployeeDao;import com.hxl.pojo.Employee;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.web.bind.annotation.RequestMapping;import java.util.Collection;@Controllerpublic class EmployeeController { @Autowired private EmployeeDao employeeDao; @RequestMapping("/emps") public String list(Model model){ Collection<Employee> employees = employeeDao.getAllEmployees(); model.addAttribute("emps",employees); return "emp/list"; }}
启动测试,发现是这个页面,这是由于咱们的语法有问题,和之前的一样将本地静态资源进行修改。

  

  之后进行修改可以得到新的界面。

  

  

  优化

  点击员工管理之后应该是高亮的状态,但是我们发现点击之后高亮不在Customers而在Dashboard

  同时我们可以将侧边栏以及顶部栏公共的部分进行提炼

  

<!DOCTYPE html><html lang="en" xmlns:th="http://www.thymeleaf.org"><!--顶部导航栏,利用th:fragment提取出来,命名为topbar--><nav class="navbar navbar-dark sticky-top bg-dark flex-md-nowrap p-0" th:fragment="topbar"> <a class="navbar-brand col-sm-3 col-md-2 mr-0" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Company name</a> <input class="form-control form-control-dark w-100" type="text" placeholder="Search" aria-label="Search"> <ul class="navbar-nav px-3"> <li class="nav-item text-nowrap"> <a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Sign out</a> </li> </ul></nav><!--侧边栏,利用th:fragment提取出来,命名为sidebar--><nav class="col-md-2 d-none d-md-block bg-light sidebar" th:fragment="siderbar"> <div class="sidebar-sticky"> <ul class="nav flex-column"> <li class="nav-item"> <a class="nav-link active" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-home"> <path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path> <polyline points="9 22 9 12 15 12 15 22"></polyline> </svg> Dashboard <span class="sr-only">(current)</span> </a> </li> <li class="nav-item"> <a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file"> <path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"></path> <polyline points="13 2 13 9 20 9"></polyline> </svg> Orders </a> </li> <li class="nav-item"> <a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-shopping-cart"> <circle cx="9" cy="21" r="1"></circle> <circle cx="20" cy="21" r="1"></circle> <path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"></path> </svg> Products </a> </li> <li class="nav-item"> <a class="nav-link" th:href="@{/emps}" rel="external nofollow" > <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-users"> <path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path> <circle cx="9" cy="7" r="4"></circle> <path d="M23 21v-2a4 4 0 0 0-3-3.87"></path> <path d="M16 3.13a4 4 0 0 1 0 7.75"></path> </svg> Customers </a> </li> <li class="nav-item"> <a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-bar-chart-2"> <line x1="18" y1="20" x2="18" y2="10"></line> <line x1="12" y1="20" x2="12" y2="4"></line> <line x1="6" y1="20" x2="6" y2="14"></line> </svg> Reports </a> </li> <li class="nav-item"> <a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-layers"> <polygon points="12 2 2 7 12 12 22 7 12 2"></polygon> <polyline points="2 17 12 22 22 17"></polyline> <polyline points="2 12 12 17 22 12"></polyline> </svg> Integrations </a> </li> </ul> <h6 class="sidebar-heading d-flex justify-content-between align-items-center px-3 mt-4 mb-1 text-muted"> <span>Saved reports</span> <a class="d-flex align-items-center text-muted" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-plus-circle"> <circle cx="12" cy="12" r="10"></circle> <line x1="12" y1="8" x2="12" y2="16"></line> <line x1="8" y1="12" x2="16" y2="12"></line> </svg> </a> </h6> <ul class="nav flex-column mb-2"> <li class="nav-item"> <a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file-text"> <path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0      

	  
	  
	  
	  
	  
	  
        

郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。

留言与评论(共有 条评论)
   
验证码: