微信小程序毕业设计-汽车维修项目管理系统项目开发实战(附源码+论文)

news2024/9/23 11:23:36

大家好!我是程序猿老A,感谢您阅读本文,欢迎一键三连哦。

💞当前专栏:微信小程序毕业设计

精彩专栏推荐👇🏻👇🏻👇🏻

🎀 Python毕业设计
🌎Java毕业设计

开发运行环境

①前端:微信小程序开发工具

② 后端:Java

  • 框架:springboot
  • JDK版本:JDK1.8
  • 服务器:tomcat7
  • 数据库:mysql 5.7
  • 数据库工具:Navicat12
  • 开发软件:eclipse/myeclipse/idea
  • Maven包:Maven3.3.9
  • 浏览器:谷歌浏览器

源码下载地址:

https://download.csdn.net/download/2301_76953549/89227594

论文目录

【如需全文请按文末获取联系】
在这里插入图片描述

一、项目简介

汽车维修项目管理系统使用Java语言进行编码,使用Mysql创建数据表保存本系统产生的数据。系统可以提供信息显示和相应服务,其管理汽车维修项目管理系统信息,查看汽车维修项目管理系统信息,管理汽车维修项目管理系统。

二、系统设计

2.1软件功能模块设计

在前面分析的管理员功能的基础上,进行接下来的设计工作,最终展示设计的结构图(见下图)。
在这里插入图片描述

2.2数据库设计

(1)下图是出入库详情实体和其具备的属性。
在这里插入图片描述
(2)下图是用户实体和其具备的属性。
在这里插入图片描述

(5)下图是员工实体和其具备的属性。
在这里插入图片描述
(6)下图是维修项目评论实体和其具备的属性。
在这里插入图片描述

三、系统项目部分截图

3.1用户信息管理

如图5.1显示的就是用户信息管理页面,此页面提供给管理员的功能有:用户信息的查询管理,可以删除用户信息、修改用户信息、新增用户信息,
还进行了对用户名称的模糊查询的条件
在这里插入图片描述

3.2维修项目管理

如图5.2显示的就是维修项目管理页面,此页面提供给管理员的功能有:查看已发布的维修项目数据,修改维修项目,维修项目作废,即可删除,还进行了对维修项目名称的模糊查询 维修项目信息的类型查询等等一些条件。
在这里插入图片描述

3.3维修项目类型管理

如图5.3显示的就是维修项目类型管理页面,此页面提供给管理员的功能有:根据维修项目类型进行条件查询,还可以对维修项目类型进行新增、修改、查询操作等等。
在这里插入图片描述

四、部分核心代码


package com.controller;

import java.io.File;
import java.math.BigDecimal;
import java.net.URL;
import java.text.SimpleDateFormat;
import com.alibaba.fastjson.JSONObject;
import java.util.*;
import org.springframework.beans.BeanUtils;
import javax.servlet.http.HttpServletRequest;
import org.springframework.web.context.ContextLoader;
import javax.servlet.ServletContext;
import com.service.TokenService;
import com.utils.*;
import java.lang.reflect.InvocationTargetException;

import com.service.DictionaryService;
import org.apache.commons.lang3.StringUtils;
import com.annotation.IgnoreAuth;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.entity.*;
import com.entity.view.*;
import com.service.*;
import com.utils.PageUtils;
import com.utils.R;
import com.alibaba.fastjson.*;

/**
 * 维修项目
 * 后端接口
 * @author
 * @email
*/
@RestController
@Controller
@RequestMapping("/weixiuxiangmu")
public class WeixiuxiangmuController {
    private static final Logger logger = LoggerFactory.getLogger(WeixiuxiangmuController.class);

    @Autowired
    private WeixiuxiangmuService weixiuxiangmuService;


    @Autowired
    private TokenService tokenService;
    @Autowired
    private DictionaryService dictionaryService;

    //级联表service

    @Autowired
    private YonghuService yonghuService;
    @Autowired
    private YuangongService yuangongService;


    /**
    * 后端列表
    */
    @RequestMapping("/page")
    public R page(@RequestParam Map<String, Object> params, HttpServletRequest request){
        logger.debug("page方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));
        String role = String.valueOf(request.getSession().getAttribute("role"));
        if(false)
            return R.error(511,"永不会进入");
        else if("用户".equals(role))
            params.put("yonghuId",request.getSession().getAttribute("userId"));
        else if("员工".equals(role))
            params.put("yuangongId",request.getSession().getAttribute("userId"));
        params.put("weixiuxiangmuDeleteStart",1);params.put("weixiuxiangmuDeleteEnd",1);
        if(params.get("orderBy")==null || params.get("orderBy")==""){
            params.put("orderBy","id");
        }
        PageUtils page = weixiuxiangmuService.queryPage(params);

        //字典表数据转换
        List<WeixiuxiangmuView> list =(List<WeixiuxiangmuView>)page.getList();
        for(WeixiuxiangmuView c:list){
            //修改对应字典表字段
            dictionaryService.dictionaryConvert(c, request);
        }
        return R.ok().put("data", page);
    }

    /**
    * 后端详情
    */
    @RequestMapping("/info/{id}")
    public R info(@PathVariable("id") Long id, HttpServletRequest request){
        logger.debug("info方法:,,Controller:{},,id:{}",this.getClass().getName(),id);
        WeixiuxiangmuEntity weixiuxiangmu = weixiuxiangmuService.selectById(id);
        if(weixiuxiangmu !=null){
            //entity转view
            WeixiuxiangmuView view = new WeixiuxiangmuView();
            BeanUtils.copyProperties( weixiuxiangmu , view );//把实体数据重构到view中

            //修改对应字典表字段
            dictionaryService.dictionaryConvert(view, request);
            return R.ok().put("data", view);
        }else {
            return R.error(511,"查不到数据");
        }

    }

    /**
    * 后端保存
    */
    @RequestMapping("/save")
    public R save(@RequestBody WeixiuxiangmuEntity weixiuxiangmu, HttpServletRequest request){
        logger.debug("save方法:,,Controller:{},,weixiuxiangmu:{}",this.getClass().getName(),weixiuxiangmu.toString());

        String role = String.valueOf(request.getSession().getAttribute("role"));
        if(false)
            return R.error(511,"永远不会进入");

        Wrapper<WeixiuxiangmuEntity> queryWrapper = new EntityWrapper<WeixiuxiangmuEntity>()
            .eq("weixiuxiangmu_name", weixiuxiangmu.getWeixiuxiangmuName())
            .eq("weixiuxiangmu_types", weixiuxiangmu.getWeixiuxiangmuTypes())
            .eq("weixiuxiangmu_clicknum", weixiuxiangmu.getWeixiuxiangmuClicknum())
            .eq("shangxia_types", weixiuxiangmu.getShangxiaTypes())
            .eq("weixiuxiangmu_delete", weixiuxiangmu.getWeixiuxiangmuDelete())
            ;

        logger.info("sql语句:"+queryWrapper.getSqlSegment());
        WeixiuxiangmuEntity weixiuxiangmuEntity = weixiuxiangmuService.selectOne(queryWrapper);
        if(weixiuxiangmuEntity==null){
            weixiuxiangmu.setWeixiuxiangmuClicknum(1);
            weixiuxiangmu.setShangxiaTypes(1);
            weixiuxiangmu.setWeixiuxiangmuDelete(1);
            weixiuxiangmu.setCreateTime(new Date());
            weixiuxiangmuService.insert(weixiuxiangmu);
            return R.ok();
        }else {
            return R.error(511,"表中有相同数据");
        }
    }

    /**
    * 后端修改
    */
    @RequestMapping("/update")
    public R update(@RequestBody WeixiuxiangmuEntity weixiuxiangmu, HttpServletRequest request){
        logger.debug("update方法:,,Controller:{},,weixiuxiangmu:{}",this.getClass().getName(),weixiuxiangmu.toString());

        String role = String.valueOf(request.getSession().getAttribute("role"));
//        if(false)
//            return R.error(511,"永远不会进入");
        //根据字段查询是否有相同数据
        Wrapper<WeixiuxiangmuEntity> queryWrapper = new EntityWrapper<WeixiuxiangmuEntity>()
            .notIn("id",weixiuxiangmu.getId())
            .andNew()
            .eq("weixiuxiangmu_name", weixiuxiangmu.getWeixiuxiangmuName())
            .eq("weixiuxiangmu_types", weixiuxiangmu.getWeixiuxiangmuTypes())
            .eq("weixiuxiangmu_clicknum", weixiuxiangmu.getWeixiuxiangmuClicknum())
            .eq("shangxia_types", weixiuxiangmu.getShangxiaTypes())
            .eq("weixiuxiangmu_delete", weixiuxiangmu.getWeixiuxiangmuDelete())
            ;

        logger.info("sql语句:"+queryWrapper.getSqlSegment());
        WeixiuxiangmuEntity weixiuxiangmuEntity = weixiuxiangmuService.selectOne(queryWrapper);
        if("".equals(weixiuxiangmu.getWeixiuxiangmuPhoto()) || "null".equals(weixiuxiangmu.getWeixiuxiangmuPhoto())){
                weixiuxiangmu.setWeixiuxiangmuPhoto(null);
        }
        if(weixiuxiangmuEntity==null){
            weixiuxiangmuService.updateById(weixiuxiangmu);//根据id更新
            return R.ok();
        }else {
            return R.error(511,"表中有相同数据");
        }
    }



    /**
    * 删除
    */
    @RequestMapping("/delete")
    public R delete(@RequestBody Integer[] ids){
        logger.debug("delete:,,Controller:{},,ids:{}",this.getClass().getName(),ids.toString());
        ArrayList<WeixiuxiangmuEntity> list = new ArrayList<>();
        for(Integer id:ids){
            WeixiuxiangmuEntity weixiuxiangmuEntity = new WeixiuxiangmuEntity();
            weixiuxiangmuEntity.setId(id);
            weixiuxiangmuEntity.setWeixiuxiangmuDelete(2);
            list.add(weixiuxiangmuEntity);
        }
        if(list != null && list.size() >0){
            weixiuxiangmuService.updateBatchById(list);
        }
        return R.ok();
    }


    /**
     * 批量上传
     */
    @RequestMapping("/batchInsert")
    public R save( String fileName, HttpServletRequest request){
        logger.debug("batchInsert方法:,,Controller:{},,fileName:{}",this.getClass().getName(),fileName);
        Integer yonghuId = Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId")));
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        try {
            List<WeixiuxiangmuEntity> weixiuxiangmuList = new ArrayList<>();//上传的东西
            Map<String, List<String>> seachFields= new HashMap<>();//要查询的字段
            Date date = new Date();
            int lastIndexOf = fileName.lastIndexOf(".");
            if(lastIndexOf == -1){
                return R.error(511,"该文件没有后缀");
            }else{
                String suffix = fileName.substring(lastIndexOf);
                if(!".xls".equals(suffix)){
                    return R.error(511,"只支持后缀为xls的excel文件");
                }else{
                    URL resource = this.getClass().getClassLoader().getResource("static/upload/" + fileName);//获取文件路径
                    File file = new File(resource.getFile());
                    if(!file.exists()){
                        return R.error(511,"找不到上传文件,请联系管理员");
                    }else{
                        List<List<String>> dataList = PoiUtil.poiImport(file.getPath());//读取xls文件
                        dataList.remove(0);//删除第一行,因为第一行是提示
                        for(List<String> data:dataList){
                            //循环
                            WeixiuxiangmuEntity weixiuxiangmuEntity = new WeixiuxiangmuEntity();
//                            weixiuxiangmuEntity.setWeixiuxiangmuName(data.get(0));                    //标题 要改的
//                            weixiuxiangmuEntity.setWeixiuxiangmuPhoto("");//详情和图片
//                            weixiuxiangmuEntity.setWeixiuxiangmuTypes(Integer.valueOf(data.get(0)));   //维修类型 要改的
//                            weixiuxiangmuEntity.setWeixiuxiangmuNewMoney(data.get(0));                    //维修价格 要改的
//                            weixiuxiangmuEntity.setWeixiuxiangmuClicknum(Integer.valueOf(data.get(0)));   //点击次数 要改的
//                            weixiuxiangmuEntity.setWeixiuxiangmuContent("");//详情和图片
//                            weixiuxiangmuEntity.setShangxiaTypes(Integer.valueOf(data.get(0)));   //是否上架 要改的
//                            weixiuxiangmuEntity.setWeixiuxiangmuDelete(1);//逻辑删除字段
//                            weixiuxiangmuEntity.setCreateTime(date);//时间
                            weixiuxiangmuList.add(weixiuxiangmuEntity);


                            //把要查询是否重复的字段放入map中
                        }

                        //查询是否重复
                        weixiuxiangmuService.insertBatch(weixiuxiangmuList);
                        return R.ok();
                    }
                }
            }
        }catch (Exception e){
            e.printStackTrace();
            return R.error(511,"批量插入数据异常,请联系管理员");
        }
    }





    /**
    * 前端列表
    */
    @IgnoreAuth
    @RequestMapping("/list")
    public R list(@RequestParam Map<String, Object> params, HttpServletRequest request){
        logger.debug("list方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));

        // 没有指定排序字段就默认id倒序
        if(StringUtil.isEmpty(String.valueOf(params.get("orderBy")))){
            params.put("orderBy","id");
        }
        PageUtils page = weixiuxiangmuService.queryPage(params);

        //字典表数据转换
        List<WeixiuxiangmuView> list =(List<WeixiuxiangmuView>)page.getList();
        for(WeixiuxiangmuView c:list)
            dictionaryService.dictionaryConvert(c, request); //修改对应字典表字段
        return R.ok().put("data", page);
    }

    /**
    * 前端详情
    */
    @RequestMapping("/detail/{id}")
    public R detail(@PathVariable("id") Long id, HttpServletRequest request){
        logger.debug("detail方法:,,Controller:{},,id:{}",this.getClass().getName(),id);
        WeixiuxiangmuEntity weixiuxiangmu = weixiuxiangmuService.selectById(id);
            if(weixiuxiangmu !=null){

                //点击数量加1
                weixiuxiangmu.setWeixiuxiangmuClicknum(weixiuxiangmu.getWeixiuxiangmuClicknum()+1);
                weixiuxiangmuService.updateById(weixiuxiangmu);

                //entity转view
                WeixiuxiangmuView view = new WeixiuxiangmuView();
                BeanUtils.copyProperties( weixiuxiangmu , view );//把实体数据重构到view中

                //修改对应字典表字段
                dictionaryService.dictionaryConvert(view, request);
                return R.ok().put("data", view);
            }else {
                return R.error(511,"查不到数据");
            }
    }


    /**
    * 前端保存
    */
    @RequestMapping("/add")
    public R add(@RequestBody WeixiuxiangmuEntity weixiuxiangmu, HttpServletRequest request){
        logger.debug("add方法:,,Controller:{},,weixiuxiangmu:{}",this.getClass().getName(),weixiuxiangmu.toString());
        Wrapper<WeixiuxiangmuEntity> queryWrapper = new EntityWrapper<WeixiuxiangmuEntity>()
            .eq("weixiuxiangmu_name", weixiuxiangmu.getWeixiuxiangmuName())
            .eq("weixiuxiangmu_types", weixiuxiangmu.getWeixiuxiangmuTypes())
            .eq("weixiuxiangmu_clicknum", weixiuxiangmu.getWeixiuxiangmuClicknum())
            .eq("shangxia_types", weixiuxiangmu.getShangxiaTypes())
            .eq("weixiuxiangmu_delete", weixiuxiangmu.getWeixiuxiangmuDelete())
            ;
        logger.info("sql语句:"+queryWrapper.getSqlSegment());
        WeixiuxiangmuEntity weixiuxiangmuEntity = weixiuxiangmuService.selectOne(queryWrapper);
        if(weixiuxiangmuEntity==null){
            weixiuxiangmu.setWeixiuxiangmuDelete(1);
            weixiuxiangmu.setCreateTime(new Date());
        weixiuxiangmuService.insert(weixiuxiangmu);
            return R.ok();
        }else {
            return R.error(511,"表中有相同数据");
        }
    }


}

五、获取源码或论文

如需对应的论文或源码,以及其他定制需求,也可以下方微❤联系。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1921253.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

(一)高并发压力测试调优篇——MYSQL数据库的调优

前言 在实际项目开发中&#xff0c;很多业务场景下都需要考虑接口的性能要求&#xff0c;追求高并发、高吞吐量。那么对于此类问题如何入手呢&#xff1f;关注作者&#xff0c;不迷路。本节内容主要介绍在数据库db方面的优化&#xff0c;以mysql数据库为例。 关于db的优化&am…

python库(11):Box库简化字典和对象之间的转换

1Box库简介 Box是一个Python库&#xff0c;它提供了一种将数据封装在字典和列表中的方式&#xff0c;同时提供了一些额外的功能&#xff0c;比如数据验证、默认值设置等。这使得Box库非常适合用于配置管理、数据传输对象&#xff08;DTO&#xff09;的创建&#xff0c;以及任何…

PDF 中图表的解析探究

PDF 中图表的解析探究 0. 引言1. 开源方案探究 0. 引言 一直以来&#xff0c;对文档中的图片和表格处理都非常有挑战性。这篇文章记录一下最近工作上在这块的探究。图表分为图片和表格&#xff0c;这篇文章主要记录了对表格的探究。还有&#xff0c;我个人主要做日本项目&…

[C++]——同步异步日志系统(4)

同步异步日志系统 一、日志等级模块设计二、日志消息类设计 一、日志等级模块设计 定义出日志系统所包含的所有日志等级分别为&#xff1a;&#xff08;7个等级&#xff09; UNKNOW0&#xff0c;未知等级的日志DRBUG &#xff0c;调试等级的日志INFO &#xff0c;提示等级的日…

前端调试技巧(npm Link,vscode调试,浏览器调试等)

Npm Link 功能&#xff1a; 在本地开发npm模块的时候&#xff0c;我们可以使用npm link命令&#xff0c;将npm 模块链接到对应的运行项目中去&#xff0c;方便地对模块进行调试和测试 断点调试 vscode调试 Debug Vue2 Project 目标&#xff1a;在VSCode中调试项目代码…

docker拉取镜像-配置阿里云镜像加速

1、配置阿里云镜像&#xff08;用于拉取镜像加速&#xff09; sudo mkdir -p /etc/docker sudo tee /etc/docker/daemon.json <<-EOF {"registry-mirrors": ["https://xxxxxxxx.mirror.aliyuncs.com"] } EOF sudo systemctl daemon-reload sudo syst…

论文阅读【时间序列】TimeMixer (ICLR2024)

【时间序列】TimeMixer (ICLR2024) 原文链接&#xff1a;TIMEMIXER: DECOMPOSABLE MULTISCALE MIXING FOR TIME SERIES FORECASTING 代码仓库&#xff1a;https://github.com/kwuking/TimeMixer 符号定义 符号含义P用于预测的历史序列长度&#xff08;seq_len&#xff09;F预测…

debian 12 Install

debian 前言 Debian是一个基于Linux内核的自由和开放源代码操作系统&#xff0c;由全球志愿者组成的Debian项目维护和开发。该项目始于1993年&#xff0c;由Ian Murdock发起&#xff0c;旨在创建一个完整的、基于Linux的自由软件操作系统。 debian download debian 百度网盘…

LangChain之工具Tools(下)

LangChain之工具Tools SQLDatabase工具准备数据初始化数据库光标查询​字符串查询带参数查询​使用SQLAlchemy查询​使用自然语言查询数据库 使用其他工具Tavily Search工具Dall-E图像生成工具ArXiv工具 SQLDatabase工具 在 LangChain 中,SQLDatabase工具可以用来与SQL数据库进…

和Bug较劲的第n天:[Error: Unable to open snapshot file: No such file or directory]

问题描述 最近做了一个小demo&#xff0c;基于parcel的&#xff0c;在迁移仓库的时候发生了一个报错 [Error: Unable to open snapshot file: No such file or directory] 原因分析&#xff1a; 在迁移仓库的时候&#xff0c;我将项目放入了一个以中文命名的文件夹里&#xf…

在生产环境中部署Elasticsearch:最佳实践和故障排除技巧——安装篇(一)

#在生产环境中部署Elasticsearch&#xff1a;最佳实践和故障排除技巧——安装篇&#xff08;一&#xff09; 前言 关键字&#xff1a; 机器学习 人工智能 AI chatGPT 学习 实现 使用 搭建 深度 python 事件 远程 docker mysql安全 技术 部署 技术 自动化 代码 文章目录 - -…

【斯坦福因果推断课程全集】2_无混淆和倾向分1

目录 Beyond a single randomized controlled trial Aggregating difference-in-means estimators Continuous X and the propensity score 随机试验的一个最简单的扩展是无约束下的干预效果估计。从定性上讲&#xff0c;当我们想估计一种并非随机的治疗效果&#xff0c;但一…

python-小理与他的画(赛氪OJ)

[题目描述] 小理是个画家&#xff0c;他希望有一天他的画能让心仪的她看到。 只是后来她有了他&#xff0c;他却只有他的画&#xff0c;他望着他的画&#xff0c;默默的发呆。 可惜做题的你&#xff0c;画不出他画的她&#xff0c;所以&#xff0c;我们只好画点简单的画&#x…

MFC扩展库BCGControlBar Pro v35.0 - 可视化管理主题等全新升级

BCGControlBar库拥有500多个经过全面设计、测试和充分记录的MFC扩展类。 我们的组件可以轻松地集成到您的应用程序中&#xff0c;并为您节省数百个开发和调试时间。 BCGControlBar专业版 v35.0已全新发布了&#xff0c;这个版本改进类Visual Studio 2022的视觉主题、增强对多个…

土壤分析仪:解密土壤之奥秘的科技先锋

在农业生产和生态保护的道路上&#xff0c;土壤的质量与状况一直是我们关注的焦点。土壤分析仪&#xff0c;作为现代科技在农业和环保领域的杰出代表&#xff0c;以其高效、精准的分析能力&#xff0c;为我们揭示了土壤的奥秘&#xff0c;为农业生产提供了科学指导&#xff0c;…

只为拿证,软考中级哪个科目比较简单?

在探讨软考中级哪个最容易过时&#xff0c;我们首先需要了解软考的类别和具体的中级证书种类。软考全称为计算机技术与软件专业技术资格水平考试&#xff0c;是全国统一的考试&#xff0c;其证书由人力资源和社会保障部和国家工业和信息化部门联合颁发&#xff0c;具有很高的证…

cuda缓存示意图

一、定义 cuda 缓存示意图gpu 架构示意图gpu 内存访问示意图 二、实现 cuda 缓存示意图 DRAM: 通常指的是GPU的显存&#xff0c;位于GPU芯片外部&#xff0c;通过某种接口&#xff08;如PCIE&#xff09;与GPU芯片相连。它是GPU访问的主要数据存储区域&#xff0c;用于存储…

Git 详解(原理、使用)

git 快速上手请看这篇博客 Git 快速上手 1. 什么是 Git Git 是目前最主流的一个版本控制器&#xff0c;并且是分布式版本控制系统&#xff0c;可以控制电脑上所有格式的文档 版本控制器&#xff1a;记录每次修改以及版本迭代的管理系统 对于文本文件&#xff0c;可以记录每次…

AI就业指导机器人,你的专属职业导航灯!

本文由 ChatMoney团队出品 介绍说明 Hey&#xff01;亲爱的小伙伴们&#xff0c;今天我要给大家带来一个职场利器——AI就业指导机器人&#xff01;&#x1f916; 在这个充满变数的职场江湖&#xff0c;找到一份既能养家糊口又能实现自我价值的工作是多么重要。但是&#xff…

springCloud整合Dubbo案例

前言&#xff1a; 好久没有使用dubbo了&#xff0c;温习一下。 一、先搭建一个SpringCloud框架 整体框架如下图 1. 先创建一个父工程&#xff1a; <?xml version"1.0" encoding"UTF-8"?> <project xmlns"http://maven.apache.org/POM/4…