SSM
vvcbvv
这个作者很懒,什么都没留下…
展开
-
lombok报错 InvalidDefinitionException: No serializer found
具体错误代码:com.fasterxml.jackson.databind.exc.InvalidDefinitionException: No serializer found for class com.zx.crowdfunding.entity.vo.DetailReturnVO and no properties discovered to create BeanSerializer百度了半天,都没看到有人说是lombok的问题。突然想起来前几天在另外一个model里面也添加了lombok原创 2022-04-15 09:33:39 · 422 阅读 · 0 评论 -
使用SpringMvc提供的测试类,测试每个与页面交互的Controller中的方法
首先要导包:<!--单元测试--> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency>原创 2021-04-28 20:52:04 · 300 阅读 · 0 评论 -
SSM使用可批量插入的sqlSession插入批量数据
在ioc容器中配置一个可以批量操作的sqlSession(配置在applicationContext.xml) <!-- 配置一个可以批量操作的sqlSession --> <bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate"> <constructor-arg name="sqlSessionFactory" ref="sqlSessionFactoryBean"></.原创 2021-04-28 19:21:34 · 779 阅读 · 0 评论