若依最详细的配置(零基础,小白版)

若依最详细配置
看了零基础都会配置
上次的有点敷衍,这次仔细的写了一下,希望我说清楚了
1.首先用git将若依克隆下来
Git下载网址
gir克隆若依代码
2.建议将前后端分离出来(开始时都在RuoYi-Vue-Plus中)
分离前后端
3。进入这里把里面两个sql文件执行(如果只是为了运行前后端这步可以不用)
若依最详细的配置(零基础,小白版)_第1张图片
就先配置后端
1.更改这三个代码的配置
若依最详细的配置(零基础,小白版)_第2张图片
application中
若依最详细的配置(零基础,小白版)_第3张图片
若依最详细的配置(零基础,小白版)_第4张图片
application-dev中
该自己数据库的名字(那个3306后是刚刚运行了那两个sql文件的数据库名字)application-prop中还有一个
若依最详细的配置(零基础,小白版)_第5张图片
port是默认的redis(内存数据库)端口,要与你的redis一样application-prop中也还有一个

若依最详细的配置(零基础,小白版)_第6张图片
后端好了吗?还没有还需要运行redis
偷的redis下载地址
用dos命令将目录移动到redis根目录下执行如下的命令就会显示图中图案则临时服务成功启动

若依最详细的配置(零基础,小白版)_第7张图片
最后启动后端就可以了(注意那个临时服务不要关,否则会报错)

前端

后面那个那个要和后端的那个context-path一致(我的是citywater这儿就是citywater)
若依最详细的配置(零基础,小白版)_第8张图片
改了之后再去下载一个nodejs哈哈
nodejs下载网址
安装之后还是不行哈哈(总之我的不行,不知道你们可以不)
需要:用dos窗口:用dos命令进入若依前段项目ruoyi-ui中输入npm install --registry=http://registry.npm.taobao.org;

再添加npm(不然配不起)
若依最详细的配置(零基础,小白版)_第9张图片
若依最详细的配置(零基础,小白版)_第10张图片
名字随意,但是scripts要改成dev,注意那个Node interpreter的文件可能要自己从本地添加
若依最详细的配置(零基础,小白版)_第11张图片

报错总结

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服务没打开,打开就行了

  1.      'vue-cli-service' 不是内部或外部命令,也不是可运行的程序
    

或批处理文件。
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] dev: vue-cli-service serve
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] 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;
就没报错了

小白书写的博客,请各位大佬纠正错误,提提建议谢谢了

你可能感兴趣的:(若依框架,java,后端,mysql)