
校园商店ssm到springboot笔记
大都督CM
诸葛村夫
展开
-
校园商店项目ssm到springboot笔记2 --系统功能 、 实体类设计和表设计
–系统功能 实体类设计和表设计 区域 实体类创建Area 根据实体创建数据库 o2o原创 2019-07-29 11:44:11 · 205 阅读 · 0 评论 -
校园商店项目ssm到springboot笔记6 --店铺注册service实现、前端设计、controller层实现、js实现、函数改造
service实现 shopService: public interface ShopService { ShopExecution addShop(Shop shop,File shopImg); } shopServiceImpl: @Service public class ShopServiceImpl implements ShopService{ @Autowired ...原创 2019-08-02 20:12:26 · 218 阅读 · 0 评论 -
校园商店项目ssm到springboot笔记3 --maven依赖、ssm配置文件
maven依赖 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apa...原创 2019-07-30 18:45:47 · 216 阅读 · 0 评论 -
校园商店项目ssm到springboot笔记7 ---店铺类别区域信息的获取、引入kaptcha实现验证码、店铺注册功能最终调试
店铺类别区域信息的获取 接口:ShopCategoryDao public interface ShopCategoryDao { List<ShopCategory> queryShopCategory(@Param("shopCategoryCondition")ShopCategory shopCategory); } mapper; <?xml version="1....原创 2019-08-03 12:49:24 · 200 阅读 · 0 评论 -
校园商店项目ssm到springboot笔记4 ---- dao验证、service验证、controller验证、logback配置
基础测试类:BaseTest /* *配置spring和junit整合,junit启动时加载springIOC容器 */ //告诉junit spring配置文件位置 @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration({"classpath:spring/spring-dao.xml","classpath:spring...原创 2019-07-31 15:09:15 · 392 阅读 · 0 评论 -
校园商店项目ssm到springboot笔记5 --新增、更新店铺、 Thumbnailator图片处理、封装Util、Dto之ShopExecution的实现
新增、更新店铺 dao接口: public interface ShopDao { //新增商店 int insertShop(Shop shop); //更新 int updateShop(Shop shop); } mapper: <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapper PUBLIC "-...原创 2019-08-01 11:12:16 · 364 阅读 · 0 评论 -
校园商店项目ssm到springboot笔记1-----环境、项目结构
最近大都督浏览了一遍框架,从SSM、SSH、再到springboot。无奈纸上得来终觉浅,大都督决定一展身手,于是… 跑去求项目视频,啃视频,跟紧大佬们的步伐,争取早日暴富。 所以要在这做笔记,所以大佬们凑合着看,反正是给我自己看的? ...原创 2019-07-28 16:51:21 · 298 阅读 · 0 评论 -
校园商店项目ssm到springboot笔记8
后面至第10章节参考: https://blog.youkuaiyun.com/yangshangwei/article/category/7659134/3 https://blog.youkuaiyun.com/Sunmeok/article/details/81368884原创 2019-09-02 21:09:13 · 341 阅读 · 0 评论