15 lines
534 B
Markdown
15 lines
534 B
Markdown
### 64.15.2. 通过Gradle使用Jetty8
|
||
|
||
你可以设置`jetty.version`属性并排除相关的WebSocket依赖,比如对于一个简单的webapp或service:
|
||
```gradle
|
||
ext['jetty.version'] = '8.1.15.v20140411'
|
||
dependencies {
|
||
compile ('org.springframework.boot:spring-boot-starter-web') {
|
||
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
|
||
}
|
||
compile ('org.springframework.boot:spring-boot-starter-jetty') {
|
||
exclude group: 'org.eclipse.jetty.websocket'
|
||
}
|
||
}
|
||
```
|