首页 > 开发 > Java > 正文

Spring Boot 2.0 设置网站默认首页的实现代码

2024-07-13 10:17:39
字体:
来源:转载
供稿:网友

Spring Boot设置默认首页,方法实验OK如下

附上Application启动代码

/*** @ClassName Application* @Description Spring-Boot website启动类* @author kevin.tian* @Date 2018-03* @version 1.0.0*/@SpringBootApplication@PropertySource(value={  "file:${APP_HOME_CONF}/overpayment-web/overpayment-web.properties",  "file:${APP_HOME_CONF}/overpayment-web/db.properties"})@ImportResource({"file:${APP_HOME_CONF}/overpayment-web/spring.xml"})public class Application extends SpringBootServletInitializer {public static void main(String[] args){try {SpringApplication.run(Application.class);} catch (Exception e) {// TODO: handle exceptione.printStackTrace();}}}

1. 放置默认首页default.html,

位置在/src/main/resources/static/default.html

2. 增加IndexController控制器,设置index路由

spring,boot,网站默认首页

测试结果,如下

spring,boot,网站默认首页

下面看下Spring Boot 2.0 新特性

说了这么多,Spring Boot 2.0 和 1.0 比都有哪些变动和新特性呢?

•JDK最低要求1.8+,并支持1.9;
•支持Spring webflux/webflux.fn响应式的web编程;
•提供Spring Data Cassandra, MongoDB, Couchbase和Redis的响应式自动配置及starter POMs;
•支持嵌入式的Netty;
•HTTP/2的支持:Tomcat, Undertow and Jetty;
•全新的体系结构,支持Spring MVC、WebFlux和Jersey;
•增强了Micrometer集成,以Atlas, Datadog, Ganglia, Graphite, Influx, JMX, New Relic, Prometheus, SignalFx, StatsD and Wavefront为基础的度量指标;
•Quartz调度支持;
•极大简化了安全自动配置;

总结

以上所述是小编给大家介绍的Spring Boot 2.0 设置网站默认首页的实现代码,如果大家有任何疑问请给我留

言,小编会及时回复大家的。在此也非常感谢大家对VeVb武林网网站的支持!


注:相关教程知识阅读请移步到JAVA教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表