a6678696 / a6678696.github.io

个人博客部署后的仓库
https://blog.zoutl.cn
3 stars 0 forks source link

进销存系统 | LeDao的博客 #234

Open a6678696 opened 3 years ago

a6678696 commented 3 years ago

https://blog.zoutl.cn/13.html

项目地址GitHub地址:https://github.com/a6678696/JXC 演示地址:http://jxc.zoutl.cn 用户名:admin 密码:admin 使用的技术本系统使用SpringBoot架构,数据访问层采用Spring Data Jpa,安全框架采用Shiro,实现了完整权限系统,Controller方法采用shiro注解,来实现有效的权限控制;界面采用了E

1837720966 commented 2 years ago

这个项目的的IndexController中@RequestMapping("/")就是这样,还是什么,我跑不起来,求带想跑起来看看

1837720966 commented 2 years ago

昵称可以加我V,求带,大佬

a6678696 commented 2 years ago

@1837720966 这个项目的的IndexController中@RequestMapping("/")就是这样,还是什么,我跑不起来,求带想跑起来看看

运行成功后,输入localhost无法访问的话,就输入localhost/login.html

1837720966 commented 2 years ago

不行啊,这样的话,登录不上,验证也出不来

a6678696 commented 2 years ago

@1837720966 不行啊,这样的话,登录不上,验证也出不来

验证码出不来吗?

1837720966 commented 2 years ago

对,出不来

a6678696 commented 2 years ago

@1837720966 对,出不来

你是用自己配置的Tomcat启动项目,还是用Spring Boot方式启动?

1837720966 commented 2 years ago

Tomcat

a6678696 commented 2 years ago

@1837720966 Tomcat

这是Spring Boot项目,不要使用自己配置的Tomcat,你直接去运行JxcApplication.java

1837720966 commented 2 years ago

运行了好了,然后怎么操作,大佬

a6678696 commented 2 years ago

@1837720966 运行了好了,然后怎么操作,大佬

运行好了不就行了,登录后就可以使用这个系统了,你还有什么问题吗?

1837720966 commented 2 years ago

怎么登录,运行好了,没有弹出啥呀

1837720966 commented 2 years ago

运行后怎么操作

a6678696 commented 2 years ago

@1837720966 运行后怎么操作

去数据库的t_user表找用户的用户名和密码,在登录页面输入用户名、密码和验证码进行登录

1837720966 commented 2 years ago

可以了,感谢大佬

1837720966 commented 2 years ago

那个我发现商品管理那不论是添加还是修改,它那个库存数量都为空是怎么回事

a6678696 commented 2 years ago

那个我发现商品管理那不论是添加还是修改,它那个库存数量都为空是怎么回事

确实有BUG,去下图的代码处添加划红线的两行代码即可,修改后的代码也同步到GitHub上面了,你的提问不规范如果继续提问需要注意一下,向我提问的注意事项参考博客:https://blog.zoutl.cn/6670.html

image

goods.setInventoryQuantity(goodsService.findById(goods.getId()).getInventoryQuantity());
goods.setInventoryQuantity(0);