类 LiveReloadServer
java.lang.Object
org.springframework.boot.devtools.livereload.LiveReloadServer
A livereload server.
- 从以下版本开始:
- 1.3.0
- 作者:
- Phillip Webb
-
字段概要
字段 -
构造器概要
构造器构造器说明Create a newLiveReloadServerlistening on the default port.LiveReloadServer(int port) Create a newLiveReloadServerlistening on the specified port.LiveReloadServer(int port, ThreadFactory threadFactory) Create a newLiveReloadServerlistening on the specified port with a specificThreadFactory.LiveReloadServer(ThreadFactory threadFactory) Create a newLiveReloadServerlistening on the default port with a specificThreadFactory. -
方法概要
修饰符和类型方法说明protected org.springframework.boot.devtools.livereload.ConnectioncreateConnection(Socket socket, InputStream inputStream, OutputStream outputStream) Factory method used to create theConnection.intgetPort()Return the port that the server is listening on.booleanReturn if the server has been started.intstart()Start the livereload server and accept incoming connections.voidstop()Gracefully stop the livereload server.voidTrigger livereload of all connected clients.
-
字段详细资料
-
DEFAULT_PORT
public static final int DEFAULT_PORTThe default live reload server port.- 另请参阅:
-
-
构造器详细资料
-
LiveReloadServer
public LiveReloadServer()Create a newLiveReloadServerlistening on the default port. -
LiveReloadServer
Create a newLiveReloadServerlistening on the default port with a specificThreadFactory.- 参数:
threadFactory- the thread factory
-
LiveReloadServer
public LiveReloadServer(int port) Create a newLiveReloadServerlistening on the specified port.- 参数:
port- the listen port
-
LiveReloadServer
Create a newLiveReloadServerlistening on the specified port with a specificThreadFactory.- 参数:
port- the listen portthreadFactory- the thread factory
-
-
方法详细资料
-
start
Start the livereload server and accept incoming connections.- 返回:
- the port on which the server is listening
- 抛出:
IOException- in case of I/O errors
-
isStarted
public boolean isStarted()Return if the server has been started.- 返回:
trueif the server is running
-
getPort
public int getPort()Return the port that the server is listening on.- 返回:
- the server port
-
stop
Gracefully stop the livereload server.- 抛出:
IOException- in case of I/O errors
-
triggerReload
public void triggerReload()Trigger livereload of all connected clients. -
createConnection
protected org.springframework.boot.devtools.livereload.Connection createConnection(Socket socket, InputStream inputStream, OutputStream outputStream) throws IOException Factory method used to create theConnection.- 参数:
socket- the source socketinputStream- the socket input streamoutputStream- the socket output stream- 返回:
- a connection
- 抛出:
IOException- in case of I/O errors
-