chore: 统一 POM 的 name 与 artifactId,并补充 description

This commit is contained in:
click33
2026-03-08 14:47:36 +08:00
parent 98f4de6514
commit 79245edb5b
16 changed files with 43 additions and 7 deletions

View File

@@ -0,0 +1,15 @@
package com.pj.test;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class FaviconController {
@RequestMapping("/favicon.ico")
public String favicon() {
return "";
}
}