Skip to content

Instantly share code, notes, and snippets.

@gkazior
gkazior / spring-boot-security-saml-config-options.md
Created February 23, 2023 14:02 — forked from arcseldon/spring-boot-security-saml-config-options.md
spring-boot-security-saml configuration options.

Configuration Properties

Configuring your Service Provider through configuration properties is pretty straight forward and most configurations could be accomplished this way. The two limitations that exists are: You can only configure what is exposed as properties, obviously, and you cannot provide specific implementations or instances of the different Spring Security SAML classes/interfaces. If you need to provide custom implementations of certain types or a more dynamic configuration you'll need to use the Java DSL approach for that configuration, but as expressed before, you can configure as much as you can through properties, while using the DSL configuration for any dynamic or custom implementations configuration. You can mix the two flavors.
The following table shows all the available properties (Parsed from Spring Configuration Metadata file).

Key Default Value Description
saml.sso.default-failure-url /
@gkazior
gkazior / gist:faf427c48db385d7ecf3cc2a42dfcb0a
Created July 14, 2021 09:08 — forked from mcbrihk/gist:039d5f56ff31bcf27c47
Download the latest snapshot from nexus using wget
Download the latest snapshot from nexus using wget
From Maven 3, support for uniqueVersion is disabled and when you distribute your snapshots by publishing them on nexus you end up with snapshot names ending with timestamps. Suddenly your QA or Integration server scripts start failing if you are getting war file from nexus repository as there is no unique name now.
To get the latest version of snapshot you can use a service available from Nexus as
wget -O my-services.war http://nexus.myorg.net/nexus/service/local/artifact/maven/redirect?r=snapshots\&g=my.company.product.services\&a=my-services\&v=1.0-SNAPSHOT\&p=war
Where
r is the id of the repository
g is the group id
@gkazior
gkazior / gist:d3e63802cd57c7a162a7832cbe663d93
Created October 31, 2016 20:57 — forked from xeno-by/gist:2559714
Mixing in a trait dynamically
Answers http://stackoverflow.com/questions/10373318/mixing-in-a-trait-dynamically.
Compile as follows:
scalac Common_1.scala Macros_2.scala
scalac Common_1.scala Test_3.scala -cp <path to the result of the previous compilation>
Tested in 2.10.0-M3, will most likely not compile by the time 2.10.0 final is released, because we're actively rehashing the API.
However the principles will remain the same in the final release, so the concept itself is okay.
upd. Code updated for 2.10.0-M7.
upd. Code updated for 2.10.0-RC1.
@gkazior
gkazior / Traits.scala
Created April 4, 2016 08:44
closeable argument
def using(closeable: {def close(): Unit}, f: => Unit) {
try {
f
} finally {
closeable.close
}
}
@gkazior
gkazior / ScalaEnumSample.scala
Last active March 18, 2016 11:34
Scala enum - pattern when I do not use java enum
/** Ensure statuses */
object EnsureStatus {
sealed trait Type
case object Created extends Type // cannot match so need to create
case object Modified extends Type // matched and modified
case object NotModified extends Type // matched and not modified
val statuses = (Created, Modified, NotModified)
}
public enum EntityType {
Customer("CS"),
ContactPerson("CP");
EntityType(String symbol) {
this.symbol = symbol;
}
private String symbol;
public String getName() {
@gkazior
gkazior / setenv.sh
Created January 12, 2016 16:06 — forked from terrancesnyder/setenv.sh
./setenv.sh - example setenv.sh with defaults set for minimal time spent in garbage collection
#! /bin/sh
# ==================================================================
# ______ __ _____
# /_ __/___ ____ ___ _________ _/ /_ /__ /
# / / / __ \/ __ `__ \/ ___/ __ `/ __/ / /
# / / / /_/ / / / / / / /__/ /_/ / /_ / /
#/_/ \____/_/ /_/ /_/\___/\__,_/\__/ /_/
# Multi-instance Apache Tomcat installation with a focus
# on best-practices as defined by Apache, SpringSource, and MuleSoft
@gkazior
gkazior / union_all_fbi_ext.sql
Last active January 12, 2016 10:31
Modification of union_all_fbi.sql - added query on PLSQL table
CREATE TABLE test_ExpV1 (value NUMBER(38));
CREATE TABLE test_ExpV2 (value NUMBER(38));
CREATE TABLE test_10r (Id NUMBER(38) NOT NULL);
INSERT INTO test_10r SELECT ROWNUM FROM dual CONNECT BY LEVEL <= 10;
INSERT INTO test_ExpV1
SELECT TRUNC(dbms_random.value(1, 10000)) FROM dual CONNECT BY LEVEL <= 10000
UNION ALL SELECT 0 FROM dual CONNECT BY LEVEL <= 500000
UNION ALL SELECT -1 FROM dual CONNECT BY LEVEL <= 490000;
@gkazior
gkazior / union_all_fbi.sql
Last active January 11, 2016 15:41
Union all and function based indexes experiments
CREATE TABLE test_ExpV1 (value NUMBER(38));
CREATE TABLE test_ExpV2 (value NUMBER(38));
CREATE TABLE test_10r (Id NUMBER(38) NOT NULL);
INSERT INTO test_10r SELECT ROWNUM FROM dual CONNECT BY LEVEL <= 10;
INSERT INTO test_ExpV1
SELECT TRUNC(dbms_random.value(1, 10000)) FROM dual CONNECT BY LEVEL <= 10000
UNION ALL SELECT 0 FROM dual CONNECT BY LEVEL <= 500000
UNION ALL SELECT -1 FROM dual CONNECT BY LEVEL <= 490000;
@gkazior
gkazior / Scaladoc.scala
Last active June 18, 2016 08:58
Sample scaladocs
/** Applies a function `f` to all elements of this $coll.
*
* {{{
* // here is sample code
* val c = Seq(1,2,3)
* c foreach { i => println(s"got $i")}
* }}}
*
* @param f the function that is applied for its side-effect to every element.
* The result of function `f` is discarded.