在Maven中打包web项目为war,报错...Error assembling WAR:... 发布时间2021-6-12 在项目的pom.xml中配置项目的打包方式war,打包时报错,提示找不到WEB-INF/web.xml 可是明明有啊!经过百度查询,有人说是webroot名字不对,应该是we ...
分类:
Web程序 时间:
2021-06-13 10:34:54
阅读次数:
0
<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"></bean> ...
分类:
移动开发 时间:
2021-06-13 10:14:40
阅读次数:
0
昆虫检测下一步想法 视频识别优化集成 之前采用的主app调用另一个module的activity来实现的视频识别技术,经过一番操作后,将其对应的cmake文件与对应的模型整合到一起来使用 不再需要调用另一个app,节省了跳转的复杂以及app的容量进行了大量的缩减 视频识别界面勾勒 具体想法 实时展示 ...
分类:
移动开发 时间:
2021-06-13 09:40:05
阅读次数:
0
1、自动配置好tomcat: 引入spring-boot-starter-web依赖会创建一个8080端口的内嵌Tomcat(可以通过application.yaml配置文件的server.port配置自定义端口[e.g: server.port=8888]) 2、自动配置好SpringMVC、We ...
分类:
其他好文 时间:
2021-06-13 09:38:04
阅读次数:
0
springcloud-eureka-feign-mybatis-seata 整合步奏 1.下载seata-server,修改seate-server配置 2.client端(你自己的项目)拷贝seate-server中的file.conf, registry.conf 加入自己项目 3.数据源代理 ...
分类:
编程语言 时间:
2021-06-11 19:16:48
阅读次数:
0
mybatis使用小案例 添加mybatis依赖 <!--mabatis依赖--> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.1</version> </depe ...
分类:
编程语言 时间:
2021-06-11 19:08:20
阅读次数:
0
低版本mybatis <foreach collection="mapInfo.entrySet()" item="item" index="index" separator=","> ${item.key} = VALUES ( #{item.value} ) </foreach> 高版本 <fo ...
分类:
其他好文 时间:
2021-06-11 19:06:24
阅读次数:
0
在实体类中添加@TableId注解: @Data public class DxApplication { @TableId(type = IdType.AUTO) private Long id; private String name; private Integer sort; } 在navi ...
分类:
其他好文 时间:
2021-06-11 18:35:34
阅读次数:
0
一、添加maven依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> 二、applicati ...
分类:
编程语言 时间:
2021-06-11 18:20:30
阅读次数:
0
第一个Mybatis程序 思路:搭建环境—>导入Mybatis—>编写代码—>测试! 2.1、搭建环境 2.1.1、搭建数据库 CREATE TABLE `Users`( `id` INT(10) NOT NULL, `name` VARCHAR(30) NOT NULL, `pwd` VARCHA ...
分类:
其他好文 时间:
2021-06-10 18:40:34
阅读次数:
0