随笔分类 -  JAVA

上一页 1 2 3 4 5 6 7 8 ··· 19 下一页
JAVA一些常用的方法
摘要:An attempt was made to call the method net.sf.jsqlparser.schema.Column.withColumnName(Ljava/lang/String;)Lnet/sf/jsqlparser/schema/Column; but it does 阅读全文
posted @ 2022-11-24 16:08 yvioo 阅读(4877) 评论(0) 推荐(1) 编辑
摘要:POST 索引名称/_update_by_query { "query": { "bool": { "must_not": { "exists": { "field": "updateTime" } } } }, "script":"ctx._source.updateTime=ctx._sourc 阅读全文
posted @ 2022-11-18 15:26 yvioo 阅读(1279) 评论(0) 推荐(0) 编辑
摘要:ES使用reindex命令从不同服务器之间迁移数据: https://www.cnblogs.com/pxblog/p/17919065.html 用的es版本是6.5.x POST _reindex { "source": { "index": "现有的索引名称", "size":1000, "q 阅读全文
posted @ 2022-11-18 10:42 yvioo 阅读(5851) 评论(0) 推荐(0) 编辑
摘要:在Maven打包的时候可以使用YUI Compressor(压缩CSS/JS)文件,使用yuicompressor-maven-plugin插件进行压缩后会减小体积,提高请求速度。 <build> <plugins> <!-- YUI Compressor (CSS/JS压缩) --> <plugi 阅读全文
posted @ 2022-11-04 23:31 yvioo 阅读(446) 评论(0) 推荐(0) 编辑
摘要:引入依赖 <dependency> <!-- this is needed or IntelliJ gives junit.jar or junit-platform-launcher:1.3.2 not found errors --> <groupId>org.junit.platform</g 阅读全文
posted @ 2022-10-11 14:24 yvioo 阅读(838) 评论(0) 推荐(0) 编辑
摘要:一个项目下创建两个模块 在hello-springboot-starter的项目pom.xml引入hello-springboot-starter-autoconfigure的依赖 其他什么都不需要写 hello-springboot-starter-autoconfigure的pom依赖根据自己需 阅读全文
posted @ 2022-09-20 23:33 yvioo 阅读(7) 评论(0) 推荐(0) 编辑
摘要:使用mybatis-plus的时候 默认是不会更新空值的数据的 如果要更新 需要在实体类加上注解 @TableField(updateStrategy = FieldStrategy.IGNORED) private Integer test; 阅读全文
posted @ 2022-08-31 17:48 yvioo 阅读(145) 评论(0) 推荐(0) 编辑
摘要:使用自带的convert方法 Page pageList = page(page, Wrappers.emptyWrapper()); IPage page1 = pageList.convert(s -> { ProductDto dto = new ProductDto(); BeanUtils 阅读全文
posted @ 2022-08-24 17:23 yvioo 阅读(1106) 评论(0) 推荐(0) 编辑
摘要:appid和appkey生成没有固定逻辑,一般根据自己的需求 Md5PwdEncoder类参考: https://www.cnblogs.com/pxblog/p/10528162.html public static void main(String[] args) { PwdEncoder pw 阅读全文
posted @ 2022-07-13 15:53 yvioo 阅读(3055) 评论(0) 推荐(0) 编辑
摘要:示例代码 数据库查询方法,可以根据自己整合的框架来写即可 import org.apache.ibatis.annotations.Select; import java.util.List; import java.util.Map; /** * 数据库备份 */ public interface 阅读全文
posted @ 2022-07-08 14:44 yvioo 阅读(2356) 评论(0) 推荐(0) 编辑
摘要:依赖处理 先排除Tomcat依赖 ,然后引入undertow依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions 阅读全文
posted @ 2022-06-30 09:17 yvioo 阅读(640) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 ··· 19 下一页