SpringBoot中如何整合Servlet呢?

2022-09-08 06:48:10 字數 1605 閱讀 2312

下文筆者將講述兩種springboot整合servlet的方法,如下所示:

實現思路:

方式1:

使用全註解的方式開發

1.1 在啟動類上面加上註解 @servletcomponentscan

1.2 編寫servlet程式,並在servlet程式上加上註解 @webservlet(name="testservlet1",urlpatterns = "/test")

方式2:

直接編寫乙個@configuration類

將servlet程式使用servletregistrationbean註冊到springboot中

例1:

//

啟動類上加入servlet掃瞄註解

@servletcomponentscan

public

class

public

static

void

main(string args) }//

編寫servlet類

}-----採用以上方式編寫**後,我們可以使用

//localhost:8080/test訪問servlet了

例2:public

class

public

static

void

main(string args) }//

編寫servlet

編寫configuration類

package

com.j**a265;

import

com.adeal.servlet.testservlet;

import

org.springframework.boot.web.servlet.servletregistrationbean;

import

org.springframework.context.annotation.bean;

import

org.springframework.context.annotation.configuration;

@configuration

public

class

servletconfig

}-------編寫以上**後,我們可以使用----http:

//localhost:8080/test01 訪問servlet了

localhost:8080/test02 訪問servlet了

**於:

SpringBoot如何整合druid

springboot相比mvc來說,在配置上極大的節省了開發者的時間與精力,這無疑對開發者是一種不可抗拒的 今天筆者就springboot如何整合druid跟大夥作個分享 druid的pom依賴 com.alibaba druid spring boot starter 1.1.4 datasour...

SpringBoot如何整合kafka集群

目錄結構 pom依賴 org.springframework.boot spring boot starter parent 2.0.1.release org.springframework.kafka spring kafka org.springframework.boot spring bo...

SpringBoot如何整合nacos詳解

nacos支援基於dns和基於rpc的服務發現,可以作為springcloud的註冊中心 動態配置服務 動態dns服務。nacos註冊中心分為server和client,server採用j a編寫,為client提供註冊發現與配置服務。中介軟體 因為推薦使用的是2.0.1版本,我這裡 2.0.1版本...