我想反映要包含在基础目录中的jar而不是在EAR中创建lib目录,是否有任何解决方法可以克服lib目录。
答案 0 :(得分:0)
您需要设置ear插件的libDirName参数,以更改耳中库的位置。
参见示例:
library(data.table)
B <- as.data.table(B)
B <- B[, .(Account, Value, index = 1:.N), by = .(State)]
x <- B[Account == "Expenses", .(min_ind = min(index)), by = .(State)]
B <- merge(B, x, by = "State")
B <- B[index < min_ind & Account == "In the Bimester", .(Value), by = .(State)]