-
-
Save nkonev/289e7150b7f26bc31515191310b3e305 to your computer and use it in GitHub Desktop.
Spring EL Placeholder to get Host Name
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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