代理记账中心后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

19 lines
477 B

  1. package com.ruoyi;
  2. import org.springframework.boot.builder.SpringApplicationBuilder;
  3. import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
  4. /**
  5. * web容器中进行部署
  6. *
  7. * @author ruoyi
  8. */
  9. public class RuoYiServletInitializer extends SpringBootServletInitializer
  10. {
  11. @Override
  12. protected SpringApplicationBuilder configure(SpringApplicationBuilder application)
  13. {
  14. return application.sources(RuoYiApplication.class);
  15. }
  16. }