GH-1219: java indexer now splits set of java source files to scan into smaller chunks to reduceo overall memory needs

This commit is contained in:
Martin Lippert
2024-04-03 16:02:57 +02:00
parent 0477995c61
commit 0efe8cd63a
12 changed files with 207 additions and 22 deletions

View File

@@ -0,0 +1,17 @@
package org.test.manyfiles;
import org.springframework.web.bind.annotation.RequestMapping;
public class SimpleMappingClass1 {
@RequestMapping("mapping1")
public String hello1() {
return "hello1";
}
@RequestMapping("mapping2")
public String hello2() {
return "hello2";
}
}

View File

@@ -0,0 +1,17 @@
package org.test.manyfiles;
import org.springframework.web.bind.annotation.RequestMapping;
public class SimpleMappingClass2 {
@RequestMapping("mapping1")
public String hello1() {
return "hello1";
}
@RequestMapping("mapping2")
public String hello2() {
return "hello2";
}
}

View File

@@ -0,0 +1,17 @@
package org.test.manyfiles;
import org.springframework.web.bind.annotation.RequestMapping;
public class SimpleMappingClass3 {
@RequestMapping("mapping1")
public String hello1() {
return "hello1";
}
@RequestMapping("mapping2")
public String hello2() {
return "hello2";
}
}

View File

@@ -0,0 +1,17 @@
package org.test.manyfiles;
import org.springframework.web.bind.annotation.RequestMapping;
public class SimpleMappingClass4 {
@RequestMapping("mapping1")
public String hello1() {
return "hello1";
}
@RequestMapping("mapping2")
public String hello2() {
return "hello2";
}
}

View File

@@ -0,0 +1,17 @@
package org.test.manyfiles;
import org.springframework.web.bind.annotation.RequestMapping;
public class SimpleMappingClass5 {
@RequestMapping("mapping1")
public String hello1() {
return "hello1";
}
@RequestMapping("mapping2")
public String hello2() {
return "hello2";
}
}

View File

@@ -0,0 +1,17 @@
package org.test.manyfiles;
import org.springframework.web.bind.annotation.RequestMapping;
public class SimpleMappingClass6 {
@RequestMapping("mapping1")
public String hello1() {
return "hello1";
}
@RequestMapping("mapping2")
public String hello2() {
return "hello2";
}
}

View File

@@ -0,0 +1,17 @@
package org.test.manyfiles;
import org.springframework.web.bind.annotation.RequestMapping;
public class SimpleMappingClass7 {
@RequestMapping("mapping1")
public String hello1() {
return "hello1";
}
@RequestMapping("mapping2")
public String hello2() {
return "hello2";
}
}

View File

@@ -0,0 +1,17 @@
package org.test.manyfiles;
import org.springframework.web.bind.annotation.RequestMapping;
public class SimpleMappingClass8 {
@RequestMapping("mapping1")
public String hello1() {
return "hello1";
}
@RequestMapping("mapping2")
public String hello2() {
return "hello2";
}
}

View File

@@ -0,0 +1,17 @@
package org.test.manyfiles;
import org.springframework.web.bind.annotation.RequestMapping;
public class SimpleMappingClass9 {
@RequestMapping("mapping1")
public String hello1() {
return "hello1";
}
@RequestMapping("mapping2")
public String hello2() {
return "hello2";
}
}