Last active
June 21, 2016 11:11
-
-
Save cybersonic/d47b802abd6ecfa56084d4b3d6573f10 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| component { | |
| this.name = "ClusterDemo"; | |
| this.sessionType = "application"; | |
| this.datasources["sessionData"] = { | |
| class: 'org.gjt.mm.mysql.Driver' | |
| , connectionString: 'jdbc:mysql://localhost:3306/sessionData?useUnicode=true&characterEncoding=UTF-8&useLegacyDatetimeCode=true' | |
| , username: '' | |
| , password: "" | |
| , storage:true // default: false | |
| }; | |
| this.sessionManagement = true; | |
| this.sessionStorage = "sessionData" | |
| this.sessionCluster = true; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment