随笔分类 - JAVA
摘要:IDEA启动tomcat6项目 接到一个老项目要做达梦数据库适配,老项目用的spring+hibernate,前端用jsp展示,之前用的eclipse开发,eclipse好多年没用了,用IDEA启动。 导入项目 一路next到底,注意选择对应jdk,我这用的是jdk6 配置项目 添加webConte
阅读全文
摘要:当有复杂名称字段时: 在repository中写代码字段名 可以添加field注解定义数据库字段名
阅读全文
摘要:重点是正则 String input = "abcdefghijk"; String regex = "(.{2})"; input = input.replaceAll (regex, "$1 "); System.out.println (input);
阅读全文
摘要:library(Rserve)Rserve() Sys.sleep(5)message("The Task is Finished Successfully!") iscompleted <- function(){ return("The Task is Finished Successfully
阅读全文