default.profile.property: "Default Profile Property" --- spring: profiles: p1 p1.profile.property: "from p1" --- spring: profiles: p2 p2.profile.property: "from p2" --- spring: profiles: p3 p2.profile.property: "from p3" --- spring: profiles: p1 & p2 p1-p2.profile.property: "from p1 & p2" --- spring: profiles: p2 & p3 p2-p3.profile.property: "from p2 & p3" --- spring: profiles: p1 & p3 p1-p3.profile.property: "from p1 & p3" --- spring: profiles: - p1 - p2 - p3 p1-or-p2-or-p3.profile.property: "from p1 | p2 | p3"