Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nkonev/289e7150b7f26bc31515191310b3e305 to your computer and use it in GitHub Desktop.
Save nkonev/289e7150b7f26bc31515191310b3e305 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