spring 整合其他框架配置

2021-08-20 08:12:21 字數 1034 閱讀 3045

1.spring自身:

(1)以上會自動掃瞄類中的註解,如果不加入這一句,則類中的註解不會生效
(2)載入.properties檔案
(3) 

這個會引入springaop的功能,可以配置切面.

子標籤有

和完整例子(**與網際網路):

(4) spring的其他配置,將物件的例項化交給容器
2.整合spring-mvc

必須項:

1)開啟註解:2)配置視**析器:

注意,在整合springmvc後在spring中的掃瞄註解中要略過@controller:

contextconfiglocation

org.springframework.web.context.contextloaderlistener

dispatcherservlet

org.springframework.web.servlet.dispatcherservlet

contextconfiglocation

classpath:config/spring-mvc.xml

1 /

characterencodingfilter

org.springframework.web.filter.characterencodingfilter

encoding

utf-8

/*

@responsebody修改為預設utf-8:

3.整合mybatis:

1)配置資料來源

2)配置sessionfactory

3)配置mybatis包掃瞄

Spring框架整合Quartz

首先編寫任務類,該類繼承quartzjobbean父類,並在其實現方法內編寫job任務 配置spring的xml檔案,配置觸發器,以及排程器的bean jobdetail class org.springframework.scheduling.quartz.jobdetailbean name j...

Spring整合MyBatis框架

public class student select addstudent parametertype org.yao.entity.student insert into student stunum,stuname,stuage values insert 4 之前使用mybatis,通過co...

Spring 整合Dubbo配置

dubbo zookeeper moven project安裝設定好後,我們就要應用dubbo來實現服務的部署 dubbo 服務分為服務提供端與消費端 開啟eclipse,然後windows preferrence xml xmlcatalog add catalog entry file syst...