home | heroImage | actionText | actionLink | features | footer | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
true |
/img/logo.png |
快速开始 → |
/guide/ |
|
Apache License 2.0 | © 2016-2018 baomidou |
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus</artifactId>
<version>latest-version</version>
</dependency>
- MyBatis-Plus 荣获【2018 年度开源中国最受欢迎的中国软件】 TOP5,感谢各位支持者的一路同行,我们会秉承 【为简化开发而生】 这一理念继续前行!
- 感谢 【huaix】 捐赠的域名(https://mybatis.plus),非常的契合 MyBatis-Plus,非常感谢!
Hosted by Coding Pages & Github Pages & Idea
<script> import { Notification } from 'element-ui' export default { mounted () { var xmlHttp = new XMLHttpRequest() xmlHttp.open("GET", "https://img.shields.io/maven-central/v/com.baomidou/mybatis-plus.json", false) xmlHttp.send(null) var versionInfo = JSON.parse(xmlHttp.responseText).value.replace('v', '') var codeNodeList = document.querySelectorAll('code') for (var i = 0; i < codeNodeList.length; i++) { codeNodeList[i].innerHTML = codeNodeList[i].innerHTML.replace('latest-version', versionInfo) } // Notify this.$notify({ offset: 50, title: '请为MP投上一票!', message: 'OSChina 2019年度最受欢迎中国开源软件评选投票火热进行中,希望能够投MP一票(点击消息即可进行投票)', type: 'success', showClose: false, duration: 0, onClick: function() { Notification.closeAll() window.open("https://www.oschina.net/project/top_cn_2019") } }); } } </script>