随笔分类 -  JAVA

摘要:IDEA启动tomcat6项目 接到一个老项目要做达梦数据库适配,老项目用的spring+hibernate,前端用jsp展示,之前用的eclipse开发,eclipse好多年没用了,用IDEA启动。 导入项目 一路next到底,注意选择对应jdk,我这用的是jdk6 配置项目 添加webConte 阅读全文
posted @ 2023-04-20 10:53 渔阳nice 阅读(122) 评论(0) 推荐(0)
摘要:当有复杂名称字段时: 在repository中写代码字段名 可以添加field注解定义数据库字段名 阅读全文
posted @ 2019-02-13 20:00 渔阳nice 阅读(908) 评论(0) 推荐(1)
摘要:重点是正则 String input = "abcdefghijk"; String regex = "(.{2})"; input = input.replaceAll (regex, "$1 "); System.out.println (input); 阅读全文
posted @ 2019-01-24 17:38 渔阳nice 阅读(385) 评论(0) 推荐(0)
摘要:library(Rserve)Rserve() Sys.sleep(5)message("The Task is Finished Successfully!") iscompleted <- function(){ return("The Task is Finished Successfully 阅读全文
posted @ 2018-12-22 14:04 渔阳nice 阅读(378) 评论(0) 推荐(0)