This worked for me on Windows 7:
- Create folder C:my_app
Go to your Play! app folder in command line and type
play dist
- Copy generated "something-SNAPSHOT" folder to C:my_app
- Download YAJSW and extract to C:my_app
In C:my_appsomething-SNAPSHOT make a new file start.bat and fill it with command like this:
java -cp "C:my_appsomething-SNAPSHOTlib*" play.core.server.NettyServer
Save it and launch start.bat. Your play app must start and work as usual. Take a look at server's PID. You will use it in the next step.
Now using command prompt go to C:my_appyajswat and type
genConfig.bat < PID from previous step >
You generated C:my_appyajswconfwrapper.conf. Edit this file and change these params like so:
wrapper.ntservice.name=My App Name
wrapper.ntservice.displayname=My App Name
Save file.
Terminate the start.bat script you started in 6. then, in C:my_appyajswat launch
runConsole.bat
If app starts, do a Ctrl c
(and answer y) to terminate the batch file and proceed to next step.
To install service launch (Run as administrator)
installService.bat
To start service launch
startService.bat
Now you can see your "My App Name" service in Windows services.
To stop service you can use stopService.bat
. To uninstall it uninstallService.bat
.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…