Spring配置檔案的測試

2021-06-05 20:39:27 字數 559 閱讀 6952

person person = (person)context.getbean("person");

system.out.println(person.getname());

list list = person.getlist();

iterator it = list.iterator();

while(it.hasnext())

for (object object : list)

map m = person.getmap();

iterator it3 = m.keyset().iterator();

while (it3.hasnext())

set set = person.getset();

iterator it1 = set.iterator();

while (it1.hasnext())

properties p = person.getpp();

iterator it2 = p.keyset().iterator();

while(it2.hasnext())

spring配置檔案加密 未測試

spring框架在一些對安全性要求較高的生產環境下,配置檔案不允許出現明文使用者名稱密碼配置,如資料庫配置等。本文主要用於解決明文使用者名稱密碼加密。public class encryptpropertyplaceholderconfigurer extends propertyplacehold...

spring配置檔案

1 配置檔案的簡化 1 屬性的 property name foo value foovalue value property 簡化為 property name foo value foovalue 2 引用bean property name foo ref bean foobean prope...

spring配置檔案

context annotation config 是用於啟用那些已經在spring容器裡註冊過的bean上面的註解,也就是顯示的向spring註冊 autowiredannotationbeanpostprocessor commonannotationbeanpostprocessor pers...