我正在使用 thymeleaf 进行 Spring Boot 项目,我需要创建一个文件并在其上放置一些行,然后将其发送给用户下载。
@PostMapping("/filegenerator")
public String createFile(@ModelAttribute("page") Page page, Model model) {
List<String> lines = new ArrayList<String>();
//Some code ..........
lines.forEach(l->{
System.out.println(l);
});
//Here I need to create a file with the List of lines
//And also put some code to download it
return "filegenerator";
}