springboot2.0 获取启动端口号
2018-03-20 本文已影响0人
邓启翔
如下:
>public class ConfSerivce implements ApplicationListener<WebServerInitializedEvent>{
>@Override
> public void onApplicationEvent(WebServerInitializedEvent event) {
> try {
> int port = event.getWebServer().getPort();
>
> } catch (Exception e) {
> e.printStackTrace();
> }
> }
>}