4-11 从后台取出shopcategory,返回到前端的业务理解
来源:4-11 店铺类别区域信息的获取
Cris_hu
2018-04-17
业务理解
4回答
-
通过这两张图希望同学能够明白queryCategory的含义,如果传入shopCategory为空,默认查询一级类别,即parentId为空的类别,首页大类;点击一级类别查找它下面的二级类别(parentId不为空,则查parentId为该parentId的店铺类别,即二级类别);如果传入一个new shopCategory,则查找所有的parentId不为空的二级类别(截图没给出,主要是创建店铺的时候需要可以选择任意二级类别而非某个特定的一级类别下的二级类别)。这样同学应该清楚了,不清楚的话只能靠你自己梳理下业务了
152018-04-17 -
翔仔
2018-04-17
出现问题应当先从自己这块分析起来,视频能演示就证明肯定是没有问题的:)
052018-04-17 -
翔仔
2018-04-17
同学好,下次建议同学解决问题的时候,不要先想着:我跟老师一样为什么会出问题。其实肯定是不一样才会出问题的,程序说一是一
ShopCategoryDao.java
List<ShopCategory> queryShopCategory(@Param("shopCategoryCondition") ShopCategory shopCategoryCondition);
是不是漏了@Param这个参数
022018-04-17 -
Cris_hu
提问者
2018-04-17
还有控制台的部分信息:
2018-04-17 19:46:27.960 [main] DEBUG org.apache.ibatis.logging.LogFactory - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
2018-04-17 19:46:28.048 [main] DEBUG org.apache.ibatis.io.VFS - Class not found: org.jboss.vfs.VFS
2018-04-17 19:46:28.048 [main] DEBUG org.apache.ibatis.io.JBoss6VFS - JBoss 6 VFS API is not available in this environment.
2018-04-17 19:46:28.048 [main] DEBUG org.apache.ibatis.io.VFS - Class not found: org.jboss.vfs.VirtualFile
2018-04-17 19:46:28.049 [main] DEBUG org.apache.ibatis.io.VFS - VFS implementation org.apache.ibatis.io.JBoss6VFS is not valid in this environment.
2018-04-17 19:46:28.049 [main] DEBUG org.apache.ibatis.io.VFS - Using VFS adapter org.apache.ibatis.io.DefaultVFS
2018-04-17 19:46:28.050 [main] DEBUG org.mybatis.spring.SqlSessionFactoryBean - Scanned package: 'com.o2o.entity' for aliases
2018-04-17 19:46:28.090 [main] DEBUG org.mybatis.spring.SqlSessionFactoryBean - Parsed configuration file: 'class path resource [mybatis-config.xml]'
2018-04-17 19:46:28.166 [main] DEBUG org.mybatis.spring.SqlSessionFactoryBean - Parsed mapper file: 'file [C:\o2O\o2oV1\target\classes\mapper\AreaDao.xml]'
2018-04-17 19:46:28.188 [main] DEBUG org.mybatis.spring.SqlSessionFactoryBean - Parsed mapper file: 'file [C:\o2O\o2oV1\target\classes\mapper\ShopCategoryDao.xml]'
2018-04-17 19:46:28.225 [main] DEBUG org.mybatis.spring.SqlSessionFactoryBean - Parsed mapper file: 'file [C:\o2O\o2oV1\target\classes\mapper\ShopDao.xml]'
2018-04-17 19:46:28.440 [main] DEBUG org.mybatis.spring.SqlSessionUtils - Creating a new SqlSession
2018-04-17 19:46:28.451 [main] DEBUG org.mybatis.spring.SqlSessionUtils - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6e005dc9] was not registered for synchronization because synchronization is not active
2018-04-17 19:46:28.495 [main] DEBUG org.mybatis.spring.SqlSessionUtils - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6e005dc9]
00
相似问题