Skip to content

Instantly share code, notes, and snippets.

@folkengine
Created September 25, 2012 12:14
Show Gist options
  • Save folkengine/3781429 to your computer and use it in GitHub Desktop.
Save folkengine/3781429 to your computer and use it in GitHub Desktop.
Spring EL Placeholder to get Host Name
<!-- Used in the Jasig/Cas uniqueIdGenerators.xml file -->
<!-- http://static.springsource.org/spring/docs/3.1.1.RELEASE/spring-framework-reference/html/expressions.html -->
<bean id="ticketGrantingTicketUniqueIdGenerator" class="org.jasig.cas.util.DefaultUniqueTicketIdGenerator">
<constructor-arg
index="0"
type="int"
value="50" />
<constructor-arg
index="1" value="#{ T(java.net.InetAddress).getLocalHost().getHostName() }" />
</bean>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment