Initial commit

This commit is contained in:
2025-10-13 09:48:25 +08:00
parent dbf7aff587
commit da426001b7
291 changed files with 1305 additions and 1563 deletions

View File

@@ -0,0 +1,17 @@
package com.delivery;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
/**
* web容器中进行部署
*
* @author delivery
*/
public class DeliveryServletInitializer extends SpringBootServletInitializer {
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(DeliveryApplication.class);
}
}