jar中没有注清单属性
摘要:在pom.xml文件中增加plugin配置:明确指定mainclass的路径类。<build> <finalName>springboot-shiro</finalName> <plugins> <plugin> <groupId>org.springframework.boot</groupId>
阅读全文
mybatis: Invalid bound statement
摘要:Invalid bound statement 原因:编译的时候没有将mapper.xml编译到target中,导致执行的时候找不到。 解决办法: 1、将mapper.xml复制到指定package中; 2、修改编译方式即可。
阅读全文