Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to configure the springboot request path in the configuration file

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

Today, the editor will share with you the relevant knowledge points about how to configure the springboot request path in the configuration file. The content is detailed and the logic is clear. I believe most people still know too much about this knowledge, so share this article for your reference. I hope you can get something after reading this article.

Request path is configured in configuration file

Previously, springboot has been used, and the request path is directly written in @ RequestMapping, @ GetMapping and other annotations. Recently, it is interesting to find that the requested url can also be written in the project configuration file application.properties or application.yml. Record it below and share it.

Set the request path in the configuration file, and I use the yml format configuration file application.yml

My: demo: path: / my/demo/path/hello

Then, create a demo,UrlTestController.java for controller

Import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.RestController; @ RestControllerpublic class UrlTestController {@ GetMapping ("${my.demo.path}") public String hello () {return "SUCCESS";}}

Start the springboot project, visit our configured path / my/demo/path/hello, and view the running result:

The way you configure the access path in the configuration file has changed

The path to the configurable access address in the application.properties file of springboot

For example, http://localhost/, used to want to use http://localhost/test/..

It was written as server.context-path=/test in the previous version.

It is written as server.servlet.context-path=/test in the current version

These are all the contents of the article "how to configure the springboot request path in the configuration file". Thank you for reading! I believe you will gain a lot after reading this article. The editor will update different knowledge for you every day. If you want to learn more knowledge, please pay attention to the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report