大三學習進度9

2022-09-18 13:03:11 字數 669 閱讀 2453

使用 @configuration 註解定義配置類,替換 spring 的配置檔案;

package net.biancheng.www.config;

import net.biancheng.www.service.personservice;

import net.biancheng.www.service.impl.personserviceimpl;

import org.springframework.context.annotation.bean;

import org.springframework.context.annotation.configuration;

/*** @configuration註解用於定義乙個配置類,相當於 spring 的配置檔案

* 配置類中包含乙個或多個被 @bean註解的方法,該方法相當於 spring 配置檔案中的 標籤定義的元件。

*/@configuration

/*** 與 id="personservice" class="personserviceimpl">

等價* 該方法返回值以元件的形式新增到容器中

* 方法名是元件 id(相當於 標籤的屬性 id)

*/@bean

public personservicepersonservice()

}

大三學習進度67

sort 方法可以指定公升序或降序排序。sort 方法第乙個引數為要排序的字段,第二個字段指定排序規則,1為公升序,1為降序,預設為公升序。對欄位 alexa 按公升序排序 usr bin python3importpymongomyclient pymongo.mongoclient mongod...

大三學習進度50

建造者模式 builder pattern 使用多個簡單的物件一步一步構建成乙個複雜的物件。這種型別的設計模式屬於建立型模式,它提供了一種建立物件的最佳方式。乙個 builder 類會一步一步構造最終的物件。該 builder 類是獨立於其他物件的。意圖 將乙個複雜的構建與其表示相分離,使得同樣的構...

大三學習進度45

spring 的事務管理是基於 aop 實現的,而 aop 是以方法為單位的。spring 的事務屬性分別為傳播行為 隔離級別 唯讀和超時屬性,這些屬性提供了事務應用的方法和描述策略。在 j a ee 開發經常採用的分層模式中,spring 的事務處理位於業務邏輯層,它提供了針對事務的解決方案。在 ...