国产 无码 综合区,色欲AV无码国产永久播放,无码天堂亚洲国产AV,国产日韩欧美女同一区二区

記錄一下基于jeecg-boot3.0的待辦消息移植記錄

這篇具有很好參考價值的文章主要介紹了記錄一下基于jeecg-boot3.0的待辦消息移植記錄。希望對大家有所幫助。如果存在錯誤或未考慮完全的地方,請大家不吝賜教,您也可以點擊"舉報違法"按鈕提交疑問。

? ? 因為之前沒有記錄,所以還要看代碼進行尋找,比較費勁,所以今天記錄一下:

1、后端

SysAnnouncementController

下面函數(shù)增加待辦的幾個顯示內(nèi)容給前端用

記錄一下基于jeecg-boot3.0的待辦消息移植記錄,jeecg-boot,nbcio-boot,java開發(fā),vue,java

?具體代碼如下:文章來源地址http://www.zghlxwxcb.cn/news/detail-661329.html

	/**
	 * @功能:補充用戶數(shù)據(jù),并返回系統(tǒng)消息
	 * @return
	 */
	@RequestMapping(value = "/listByUser", method = RequestMethod.GET)
	public Result<Map<String, Object>> listByUser(@RequestParam(required = false, defaultValue = "5") Integer pageSize) {
		Result<Map<String,Object>> result = new Result<Map<String,Object>>();
		LoginUser sysUser = (LoginUser)SecurityUtils.getSubject().getPrincipal();
		String userId = sysUser.getId();
		// 1.將系統(tǒng)消息補充到用戶通告閱讀標記表中
		LambdaQueryWrapper<SysAnnouncement> querySaWrapper = new LambdaQueryWrapper<SysAnnouncement>();
		querySaWrapper.eq(SysAnnouncement::getMsgType,CommonConstant.MSG_TYPE_ALL); // 全部人員
		querySaWrapper.eq(SysAnnouncement::getDelFlag,CommonConstant.DEL_FLAG_0.toString());  // 未刪除
		querySaWrapper.eq(SysAnnouncement::getSendStatus, CommonConstant.HAS_SEND); //已發(fā)布
		querySaWrapper.ge(SysAnnouncement::getEndTime, sysUser.getCreateTime()); //新注冊用戶不看結(jié)束通知
		//update-begin--Author:liusq  Date:20210108 for:[JT-424] 【開源issue】bug處理--------------------
		querySaWrapper.notInSql(SysAnnouncement::getId,"select annt_id from sys_announcement_send where user_id='"+userId+"'");
		//update-begin--Author:liusq  Date:20210108  for: [JT-424] 【開源issue】bug處理--------------------
		List<SysAnnouncement> announcements = sysAnnouncementService.list(querySaWrapper);
		if(announcements.size()>0) {
			for(int i=0;i<announcements.size();i++) {
				//update-begin--Author:wangshuai  Date:20200803  for: 通知公告消息重復(fù)LOWCOD-759--------------------
				//因為websocket沒有判斷是否存在這個用戶,要是判斷會出現(xiàn)問題,故在此判斷邏輯
				LambdaQueryWrapper<SysAnnouncementSend> query = new LambdaQueryWrapper<>();
				query.eq(SysAnnouncementSend::getAnntId,announcements.get(i).getId());
				query.eq(SysAnnouncementSend::getUserId,userId);
				SysAnnouncementSend one = sysAnnouncementSendService.getOne(query);
				if(null==one){
				SysAnnouncementSend announcementSend = new SysAnnouncementSend();
				announcementSend.setAnntId(announcements.get(i).getId());
				announcementSend.setUserId(userId);
				announcementSend.setReadFlag(CommonConstant.NO_READ_FLAG);
				sysAnnouncementSendService.save(announcementSend);
				}
				//update-end--Author:wangshuai  Date:20200803  for: 通知公告消息重復(fù)LOWCOD-759------------
			}
		}
		// 2.查詢用戶未讀的系統(tǒng)消息
		Page<SysAnnouncement> anntMsgList = new Page<SysAnnouncement>(0, pageSize);
		anntMsgList = sysAnnouncementService.querySysCementPageByUserId(anntMsgList,userId,"1");//通知公告消息
		Page<SysAnnouncement> sysMsgList = new Page<SysAnnouncement>(0, pageSize);
		sysMsgList = sysAnnouncementService.querySysCementPageByUserId(sysMsgList,userId,"2");//系統(tǒng)消息
		Page<SysAnnouncement> todealMsgList = new Page<SysAnnouncement>(0, pageSize);
		todealMsgList = sysAnnouncementService.querySysCementPageByUserId(todealMsgList,userId,"3");//待辦消息
		Map<String,Object> sysMsgMap = new HashMap<String, Object>();
		sysMsgMap.put("sysMsgList", sysMsgList.getRecords());
		sysMsgMap.put("sysMsgTotal", sysMsgList.getTotal());
		sysMsgMap.put("anntMsgList", anntMsgList.getRecords());
		sysMsgMap.put("anntMsgTotal", anntMsgList.getTotal());
		sysMsgMap.put("todealMsgList", todealMsgList.getRecords());
		sysMsgMap.put("todealMsgTotal", todealMsgList.getTotal());
		result.setSuccess(true);
		result.setResult(sysMsgMap);
		return result;
	}

2、前端

HeaderNotice.vue 文件

獲取系統(tǒng)消息里增加待辦內(nèi)容

記錄一下基于jeecg-boot3.0的待辦消息移植記錄,jeecg-boot,nbcio-boot,java開發(fā),vue,java

?

同時顯示的地方做調(diào)整,包括樣式與內(nèi)容顯示

記錄一下基于jeecg-boot3.0的待辦消息移植記錄,jeecg-boot,nbcio-boot,java開發(fā),vue,java

?

消息通知彈出

記錄一下基于jeecg-boot3.0的待辦消息移植記錄,jeecg-boot,nbcio-boot,java開發(fā),vue,java

?具體代碼如下:

<template>
  <a-popover
    trigger="click"
    placement="bottomRight"
    :autoAdjustOverflow="true"
    :arrowPointAtCenter="true"
    overlayClassName="header-notice-wrapper"
    @visibleChange="handleHoverChange"
    :overlayStyle="{ width: '400px', top: '50px' }">
    <template slot="content">
      <a-spin :spinning="loadding">
        <a-tabs>
          <a-tab-pane :tab="msg1Title" key="1">
            <!--<a-list>
              <a-list-item>
                <a-list-item-meta title="你收到了 14 份新周報" description="一年前">
                  <a-avatar style="background-color: white" slot="avatar" src="https://gw.alipayobjects.com/zos/rmsportal/ThXAXghbEsBCCSDihZxY.png"/>
                </a-list-item-meta>
              </a-list-item>
              <a-list-item>
                <a-list-item-meta title="你推薦的 IT大牛 已通過第三輪面試" description="一年前">
                  <a-avatar style="background-color: white" slot="avatar" src="https://gw.alipayobjects.com/zos/rmsportal/OKJXDXrmkNshAMvwtvhu.png"/>
                </a-list-item-meta>
              </a-list-item>
              <a-list-item>
                <a-list-item-meta title="這種模板可以區(qū)分多種通知類型" description="一年前">
                  <a-avatar style="background-color: white" slot="avatar" src="https://gw.alipayobjects.com/zos/rmsportal/kISTdvpyTAhtGxpovNWd.png"/>
                </a-list-item-meta>
              </a-list-item>
            </a-list>-->
            <a-list>
              <a-list-item :key="index" v-for="(record, index) in announcement1">
                <div style="margin-left: 5%;width: 50%">
                  <p><a @click="showAnnouncement(record)">{{ record.titile }}</a></p>
                  <p style="color: rgba(0,0,0,.45);margin-bottom: 0px">{{ record.createTime }} 發(fā)布</p>
                </div>
                <div style="text-align: right">
                  <a-tag @click="showAnnouncement(record)" v-if="record.priority === 'L'" color="blue">一般消息</a-tag>
                  <a-tag @click="showAnnouncement(record)" v-if="record.priority === 'M'" color="orange">重要消息</a-tag>
                  <a-tag @click="showAnnouncement(record)" v-if="record.priority === 'H'" color="red">緊急消息</a-tag>
                </div>
              </a-list-item>
              <div style="margin-top: 5px;text-align: center">
                <a-button @click="toMyAnnouncement()" type="dashed" block>查看更多</a-button>
              </div>
            </a-list>
          </a-tab-pane>
		  <a-tab-pane :tab="msg2Title" key="2">
		    <a-list>
		      <a-list-item :key="index" v-for="(record, index) in announcement2">
		        <div style="margin-left: 5%;width: 50%">
		          <p><a @click="showAnnouncement(record)">{{ record.titile }}</a></p>
		          <p style="color: rgba(0,0,0,.45);margin-bottom: 0px">{{ record.createTime }} 發(fā)布</p>
		        </div>
		        <div style="text-align: right">
		          <a-tag @click="showAnnouncement(record)" v-if="record.priority === 'L'" color="blue">一般消息</a-tag>
		          <a-tag @click="showAnnouncement(record)" v-if="record.priority === 'M'" color="orange">重要消息</a-tag>
		          <a-tag @click="showAnnouncement(record)" v-if="record.priority === 'H'" color="red">緊急消息</a-tag>
		        </div>
		      </a-list-item>
		      <div style="margin-top: 5px;text-align: center">
		        <a-button @click="toMyAnnouncement()" type="dashed" block>查看更多</a-button>
		      </div>
		    </a-list>
		  </a-tab-pane>
		  <a-tab-pane :tab="msg3Title" key="3">
		    <a-list>
		      <a-list-item :key="index" v-for="(record, index) in announcement3">
		        <div style="margin-left: 5%;width: 50%">
		          <p><a @click="showAnnouncement(record)">{{ record.titile }}</a></p>
		          <p style="color: rgba(0,0,0,.45);margin-bottom: 0px">{{ record.createTime }} 發(fā)布</p>
		        </div>
		        <div style="text-align: right">
		          <a-tag @click="showAnnouncement(record)" v-if="record.priority === 'L'" color="blue">一般消息</a-tag>
		          <a-tag @click="showAnnouncement(record)" v-if="record.priority === 'M'" color="orange">重要消息</a-tag>
		          <a-tag @click="showAnnouncement(record)" v-if="record.priority === 'H'" color="red">緊急消息</a-tag>
		        </div>
		      </a-list-item>
		      <div style="margin-top: 5px;text-align: center">
		        <a-button @click="toMyAnnouncement()" type="dashed" block>查看更多</a-button>
		      </div>
		    </a-list>
		  </a-tab-pane>
        </a-tabs>
      </a-spin>
    </template>
    <span @click="fetchNotice" class="header-notice">
      <a-badge :count="msgTotal">
        <a-icon style="font-size: 16px; padding: 4px" type="bell" />
      </a-badge>
    </span>
    <show-announcement ref="ShowAnnouncement" @ok="modalFormOk"></show-announcement>
    <dynamic-notice ref="showDynamNotice" :path="openPath" :formData="formData"/>
  </a-popover>
</template>

<script>
  import { getAction,putAction } from '@/api/manage'
  import ShowAnnouncement from './ShowAnnouncement'
  import store from '@/store/'
  import DynamicNotice from './DynamicNotice'


  export default {
    name: "HeaderNotice",
    components: {
      DynamicNotice,
      ShowAnnouncement,
    },
    data () {
      return {
        loadding: false,
        url:{
          listCementByUser:"/sys/annountCement/listByUser",
          editCementSend:"/sys/sysAnnouncementSend/editByAnntIdAndUserId",
          queryById:"/sys/annountCement/queryById",
        },
        hovered: false,
        announcement1:[],
        announcement2:[],
        announcement3:[],
        msg1Count:"0",
        msg2Count:"0",
		    msg3Count:"0",
        msg1Title:"通知(0)",
        msg2Title:"",
		    msg3Title:"",
        stopTimer:false,
        websock: null,
        lockReconnect:false,
        heartCheck:null,
        formData:{},
        openPath:''
      }
    },
    computed:{
      msgTotal () {
        return parseInt(this.msg1Count)+parseInt(this.msg2Count)+parseInt(this.msg3Count);
      }
    },
    mounted() {
      this.loadData();
      //this.timerFun();
      this.initWebSocket();
     // this.heartCheckFun();
    },
    destroyed: function () { // 離開頁面生命周期函數(shù)
      this.websocketOnclose();
    },
    methods: {
      timerFun() {
        this.stopTimer = false;
        let myTimer = setInterval(()=>{
          // 停止定時器
          if (this.stopTimer == true) {
            clearInterval(myTimer);
            return;
          }
          this.loadData()
        },6000)
      },
      loadData (){
        try {
          // 獲取系統(tǒng)消息
          getAction(this.url.listCementByUser).then((res) => {
            if (res.success) {
              this.announcement1 = res.result.anntMsgList;
              this.msg1Count = res.result.anntMsgTotal;
              this.msg1Title = "通知(" + res.result.anntMsgTotal + ")";
              this.announcement2 = res.result.sysMsgList;
              this.msg2Count = res.result.sysMsgTotal;
              this.msg2Title = "系統(tǒng)消息(" + res.result.sysMsgTotal + ")";
              this.announcement3 = res.result.todealMsgList;
              this.msg3Count = res.result.todealMsgTotal;
              this.msg3Title = "待辦消息(" + res.result.todealMsgTotal + ")";
            }
          }).catch(error => {
            console.log("系統(tǒng)消息通知異常",error);//這行打印permissionName is undefined
            this.stopTimer = true;
            console.log("清理timer");
          });
        } catch (err) {
          this.stopTimer = true;
          console.log("通知異常",err);
        }
      },
      fetchNotice () {
        if (this.loadding) {
          this.loadding = false
          return
        }
        this.loadding = true
        setTimeout(() => {
          this.loadding = false
        }, 200)
      },
      showAnnouncement(record){
        putAction(this.url.editCementSend,{anntId:record.id}).then((res)=>{
          if(res.success){
            this.loadData();
          }
        });
        this.hovered = false;
        if(record.openType==='component'){
          this.openPath = record.openPage;
          this.formData = {id:record.busId};
          this.$refs.showDynamNotice.detail(record.openPage);
        }else{
          this.$refs.ShowAnnouncement.detail(record);
        }
      },
      toMyAnnouncement(){
        this.$router.push({
          path: '/isps/userAnnouncement'
        });
      },
      modalFormOk(){
      },
      handleHoverChange (visible) {
        this.hovered = visible;
      },

      initWebSocket: function () {
        // WebSocket與普通的請求所用協(xié)議有所不同,ws等同于http,wss等同于https
        var userId = store.getters.userInfo.id;
        var url = window._CONFIG['domianURL'].replace("https://","wss://").replace("http://","ws://")+"/websocket/"+userId;
        //console.log("url=",url);
        this.websock = new WebSocket(url);
        this.websock.onopen = this.websocketOnopen;
        this.websock.onerror = this.websocketOnerror;
        this.websock.onmessage = this.websocketOnmessage;
        this.websock.onclose = this.websocketOnclose;
      },
      websocketOnopen: function () {
        console.log("WebSocket連接成功");
        //心跳檢測重置
        //this.heartCheck.reset().start();
      },
      websocketOnerror: function (e) {
        console.log("WebSocket連接發(fā)生錯誤");
        this.reconnect();
      },
      websocketOnmessage: function (e) {
        console.log("-----接收消息-------",e.data);
        var data = eval("(" + e.data + ")"); //解析對象
        if(data.cmd == "topic"){
            //系統(tǒng)通知
          this.loadData();
          this.$notification.open({  //websocket消息通知彈出
                      message: 'websocket消息通知',
                      description: data.msgTxt,
                      style: {
                        width: '600px',
                        marginLeft: `${335 - 600}px`,
                      },
                    });
        }else if(data.cmd == "user"){
            //用戶消息
          this.loadData();
          this.$notification.open({
                      message: 'websocket消息通知',
                      description: data.msgTxt,
                      style: {
                        width: '600px',
                        marginLeft: `${335 - 600}px`,
                      },
                    });
        }
        //心跳檢測重置
        //this.heartCheck.reset().start();
      },
      websocketOnclose: function (e) {
        console.log("connection closed (" + e + ")");
        if(e){
          console.log("connection closed (" + e.code + ")");
        }
        this.reconnect();
      },
      websocketSend(text) { // 數(shù)據(jù)發(fā)送
        try {
          this.websock.send(text);
        } catch (err) {
          console.log("send failed (" + err.code + ")");
        }
      },

      openNotification (data) {
        var text = data.msgTxt;
        const key = `open${Date.now()}`;
        this.$notification.open({
          message: '消息提醒',
          placement:'bottomRight',
          description: text,
          key,
          btn: (h)=>{
            return h('a-button', {
              props: {
                type: 'primary',
                size: 'small',
              },
              on: {
                click: () => this.showDetail(key,data)
              }
            }, '查看詳情')
          },
        });
      },

      reconnect() {
        var that = this;
        if(that.lockReconnect) return;
        that.lockReconnect = true;
        //沒連接上會一直重連,設(shè)置延遲避免請求過多
        setTimeout(function () {
          console.info("嘗試重連...");
          that.initWebSocket();
          that.lockReconnect = false;
        }, 5000);
      },
      heartCheckFun(){
        var that = this;
        //心跳檢測,每20s心跳一次
        that.heartCheck = {
          timeout: 20000,
          timeoutObj: null,
          serverTimeoutObj: null,
          reset: function(){
            clearTimeout(this.timeoutObj);
            //clearTimeout(this.serverTimeoutObj);
            return this;
          },
          start: function(){
            var self = this;
            this.timeoutObj = setTimeout(function(){
              //這里發(fā)送一個心跳,后端收到后,返回一個心跳消息,
              //onmessage拿到返回的心跳就說明連接正常
              that.websocketSend("HeartBeat");
              console.info("客戶端發(fā)送心跳");
              //self.serverTimeoutObj = setTimeout(function(){//如果超過一定時間還沒重置,說明后端主動斷開了
              //  that.websock.close();//如果onclose會執(zhí)行reconnect,我們執(zhí)行ws.close()就行了.如果直接執(zhí)行reconnect 會觸發(fā)onclose導(dǎo)致重連兩次
              //}, self.timeout)
            }, this.timeout)
          }
        }
      },


      showDetail(key,data){
        this.$notification.close(key);
        var id = data.msgId;
        getAction(this.url.queryById,{id:id}).then((res) => {
          if (res.success) {
            var record = res.result;
            this.showAnnouncement(record);
          }
        })

      },
    }
  }
</script>

<style lang="css">
  .header-notice-wrapper {
    top: 50px !important;
  }
</style>
<style lang="less" scoped>
  .header-notice{
    display: inline-block;
    transition: all 0.3s;

    span {
      vertical-align: initial;
    }
  }
</style>

到了這里,關(guān)于記錄一下基于jeecg-boot3.0的待辦消息移植記錄的文章就介紹完了。如果您還想了解更多內(nèi)容,請在右上角搜索TOY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!

本文來自互聯(lián)網(wǎng)用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務(wù),不擁有所有權(quán),不承擔相關(guān)法律責任。如若轉(zhuǎn)載,請注明出處: 如若內(nèi)容造成侵權(quán)/違法違規(guī)/事實不符,請點擊違法舉報進行投訴反饋,一經(jīng)查實,立即刪除!

領(lǐng)支付寶紅包贊助服務(wù)器費用

相關(guān)文章

  • 基于jeecg-boot的nbcio-boot億事達企業(yè)管理平臺發(fā)布

    基于jeecg-boot的nbcio-boot億事達企業(yè)管理平臺發(fā)布

    目前這個演示系統(tǒng)與代碼都同步,以后也盡量保持同步。 更多功能看演示系統(tǒng) gitee源代碼地址 后端代碼: https://gitee.com/nbacheng/nbcio-boot 前端代碼:https://gitee.com/nbacheng/nbcio-vue.git 在線演示(包括H5) : http://122.227.135.243:9888 ? 這次主要更新增加的內(nèi)容如下: 1、我的日歷 ? ?

    2024年02月17日
    瀏覽(93)
  • Jeecg-Boot /jeecg-boot/jmreport/qurestSql接口sql注入漏洞復(fù)現(xiàn)

    Jeecg-Boot /jeecg-boot/jmreport/qurestSql接口sql注入漏洞復(fù)現(xiàn)

    一、Jeecg-Boot介紹 JeecgBoot 是一款基于代碼生成器的 低代碼開發(fā)平臺 !前后端分離架構(gòu) SpringBoot2.x,SpringCloud,Ant DesignVue,Mybatis-plus,Shiro,JWT,支持微服務(wù)。強大的代碼生成器讓前后端代碼一鍵生成,實現(xiàn)低代碼開發(fā)! JeecgBoot 引領(lǐng)新的低代碼開發(fā)模式(OnlineCoding- 代碼生成器

    2024年02月09日
    瀏覽(235)
  • 詳解 Jeecg-boot 框架如何配置 elasticsearch

    詳解 Jeecg-boot 框架如何配置 elasticsearch

    目錄 一、下載安裝 Elasticsearch 1、 地址:https://www.elastic.co/cn/downloads/elasticsearch 2、下載完成后,解壓縮,進入config目錄更改配置文件 3、 修改配置完成后,前往bin目錄啟動el 4、訪問:localhost:9200 測試 ?二、配置 Jeecg-boot 框架 1、導(dǎo)入jeecg項目后,打開application-dev.yml配置文件,

    2024年01月17日
    瀏覽(91)
  • jeecg-boot批量導(dǎo)入問題注意事項

    jeecg-boot批量導(dǎo)入問題注意事項

    由于批量導(dǎo)入數(shù)據(jù)速度很快, 因為數(shù)據(jù)庫中的create time字段的時間可能一樣,并且jeecg框架自帶的是根據(jù)生成時間排序, 因此在前端翻頁查詢的時候,數(shù)據(jù)每次排序可能會不一樣, 會出現(xiàn)第一頁已經(jīng)出現(xiàn)過一次的數(shù)據(jù)在第二頁還會出現(xiàn)。 在后端的查詢接口中,要在拼接一個

    2024年02月12日
    瀏覽(98)
  • Jeecg-Boot 集成Activiti 6 (含源碼)

    Jeecg-Boot 集成Activiti 6 (含源碼)

    本項目是2020 年集成的,采用的是當時版本的Jeecg-Boot,集成時請注意版本。 Jeecg-Boot 免費版沒有工作流,于是我簡單集成了一套,并且運用于公司項目中。 論壇中的Activiti 功能介紹,都來自該代碼。 本項目中是多租戶模式,如不需要多租戶將想要接口中tenantId 賦值刪除即可

    2024年02月16日
    瀏覽(96)
  • jeecg-boot微服務(wù)部署步驟詳細說明

    jeecg-boot微服務(wù)部署步驟詳細說明

    大家好,我是小龍人。 通常小企業(yè)是如何成長起來的?接外包,然后將公司慢慢的養(yǎng)起來,最后開始研發(fā)自己的產(chǎn)品,產(chǎn)品上線,上市! 哈哈,可能有點理想化了,但是身邊好多朋友都自己出去創(chuàng)業(yè)了,今兒個張三開了個公司,明兒個李四也注冊了個公司,但是了解了下,

    2023年04月09日
    瀏覽(91)
  • 【vue】vue中Mixins的用法(jeecg-boot為例):

    【vue】vue中Mixins的用法(jeecg-boot為例):

    一、jeecg-boot本身只有JeecgListMixin.js Mixin是為將頁面的一些 公共方法 放在一起處理(節(jié)省重復(fù)性代碼,方便維護) 優(yōu)先級: 頁面里面的方法 Mixin里面的方法=》所以維護時要注意查找 二、使用Mixin: 注意: 這里import 導(dǎo)入的js文件,要在js文件里面有導(dǎo)出 三、mixins詳解: 【1】由

    2024年02月14日
    瀏覽(93)
  • Jeecg-Boot 未授權(quán)SQL注入漏洞(CVE-2023-1454)

    Jeecg-Boot 未授權(quán)SQL注入漏洞(CVE-2023-1454)

    原創(chuàng)文章創(chuàng)作不易,個人博客charis3306.top? JDK: 1.8+ (小于11) Maven: 3.5+ MySql: 5.7+ Redis: 3.2 + Node Js: 10.0 + Npm: 5.6.0+ Yarn: 1.21.1+ 下載源碼 后端源碼 https://github.com/jeecgboot/jeecg-boot/tree/v3.5.0 前端源碼 https://github.com/jeecgboot/jeecgboot-vue3 安裝手冊 http://doc.jeecg.com/2043871 下載完成后放在bc中。

    2024年02月05日
    瀏覽(89)
  • Jeecg-Boot 存在前臺SQL注入漏洞(CVE-2023-1454)

    微信公眾號搜索:南風(fēng)漏洞復(fù)現(xiàn)文庫 南風(fēng)網(wǎng)絡(luò)安全公眾號首發(fā) eecgBoot是一款基于BPM的低代碼平臺!前后端分離架構(gòu) SpringBoot 2.x,SpringCloud,Ant DesignVue,Mybatis-plus,Shiro,JWT,支持微服務(wù)。強大的代碼生成器讓前后端代碼一鍵生成,實現(xiàn)低代碼開發(fā)#x

    2024年02月06日
    瀏覽(188)
  • Jeecg-Boot 低代碼開發(fā)平臺之路(一) —— 開始從零學(xué)起

    今天開始詳細學(xué)習(xí)下?Jeecg-Boot?低代碼開發(fā)平臺,官方網(wǎng)站對該平臺的介紹是如下。 JeecgBoot是一款基于BPM的低代碼平臺!前后端分離架構(gòu) SpringBoot 2.x,SpringCloud,Ant DesignVue,Mybatis-plus,Shiro,JWT,支持微服務(wù)。強大的代碼生成器讓前后端代碼一鍵生成,實現(xiàn)低代碼開發(fā)! Jee

    2023年04月08日
    瀏覽(367)

覺得文章有用就打賞一下文章作者

支付寶掃一掃打賞

博客贊助

微信掃一掃打賞

請作者喝杯咖啡吧~博客贊助

支付寶掃一掃領(lǐng)取紅包,優(yōu)惠每天領(lǐng)

二維碼1

領(lǐng)取紅包

二維碼2

領(lǐng)紅包