# 目录
# 代码生成工具
jeesite快速开发平台(六)----代码生成模块介绍及使用 (opens new window)
# buglist
编译运行 jeesite 4.2.1
数据表不存在,请执行 web/bin/init-data.bat(sh) 脚本初始化数据库!
Cannot resolve com.jeesite:jeesite-module-swagger:4.2.1-SNAPSHOT (opens new window)
maven仓库配置的是阿里云的仓库,把阿里云的仓库改成中心仓库便可解决 1.找到你的maven仓库点击conf里找到settings.xml 2.打开settings.xml在mirrors中进行仓库更改这里注意mirrors里面只能有一个仓库不能有多个
<mirror>
<id>repo</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://repo1.maven.org/maven2/</url>
</mirror>
1
2
3
4
5
6
7
2
3
4
5
6
7