若依最详细的配置(零基础,小白版)
若依最详细配置
看了零基础都会配置
上次的有点敷衍,这次仔细的写了一下,希望我说清楚了
1.首先用git将若依克隆下来
Git下载网址
2.建议将前后端分离出来(开始时都在RuoYi-Vue-Plus中)
3。进入这里把里面两个sql文件执行(如果只是为了运行前后端这步可以不用)
就先配置后端
1.更改这三个代码的配置
application中
application-dev中
该自己数据库的名字(那个3306后是刚刚运行了那两个sql文件的数据库名字)application-prop中还有一个
port是默认的redis(内存数据库)端口,要与你的redis一样application-prop中也还有一个
后端好了吗?还没有还需要运行redis
偷的redis下载地址
用dos命令将目录移动到redis根目录下执行如下的命令就会显示图中图案则临时服务成功启动
最后启动后端就可以了(注意那个临时服务不要关,否则会报错)
前端
后面那个那个要和后端的那个context-path一致(我的是citywater这儿就是citywater)
改了之后再去下载一个nodejs哈哈
nodejs下载网址
安装之后还是不行哈哈(总之我的不行,不知道你们可以不)
需要:用dos窗口:用dos命令进入若依前段项目ruoyi-ui中输入npm install --registry=http://registry.npm.taobao.org;
再添加npm(不然配不起)
名字随意,但是scripts要改成dev,注意那个Node interpreter的文件可能要自己从本地添加
报错总结
1.Application run failed
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name ‘sysConfigController’: Unsatisfied dependency expressed through field ‘configService’; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘sysConfigServiceImpl’: Invocation of init method failed; nested exception is org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to Redis; nested exception is org.springframework.data.redis.connection.PoolException: Could not get a resource from the pool; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379
这个是redis服务没打开,打开就行了
-
'vue-cli-service' 不是内部或外部命令,也不是可运行的程序
或批处理文件。
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! ruoyi@3.3.0 dev: vue-cli-service serve
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the ruoyi@3.3.0 dev script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm WARN Local package.json exists, but node_modules missing, did you mean to install?
这个是我下了nodejs后就启动项目报的错
在网上有很多方案
一种:重新安装node_modules
我的是用dos窗口:用dos命令进入若依前段项目ruoyi-ui中输入npm install --registry=thhp://registry.npm.taobao.org;
就没报错了
小白书写的博客,请各位大佬纠正错误,提提建议谢谢了
本文地址:https://blog.csdn.net/m0_53313913/article/details/112548585