Initial commit (v2)
This commit is contained in:
parent
36d4aaac81
commit
3a07a83a85
15 changed files with 856 additions and 310 deletions
1
bin/1. rmireg.bat
Executable file
1
bin/1. rmireg.bat
Executable file
|
@ -0,0 +1 @@
|
|||
start rmiregistry
|
3
bin/2. compile.bat
Executable file
3
bin/2. compile.bat
Executable file
|
@ -0,0 +1,3 @@
|
|||
set CLASSPATH=%CLASSPATH%;C:\JGroups\jgroups-3.6.0.Final.jar;
|
||||
javac -Xlint:unchecked *.java
|
||||
pause
|
3
bin/3. startServer.bat
Executable file
3
bin/3. startServer.bat
Executable file
|
@ -0,0 +1,3 @@
|
|||
set CLASSPATH=%CLASSPATH%;C:\JGroups\jgroups-3.6.0.Final.jar;
|
||||
java -Djava.net.preferIPv4Stack=true AuctionServer
|
||||
pause
|
3
bin/4. startClient.bat
Executable file
3
bin/4. startClient.bat
Executable file
|
@ -0,0 +1,3 @@
|
|||
set /p id="Username (leave blank for new user): "
|
||||
java -Djava.net.preferIPv4Stack=true AuctionClient %id%
|
||||
pause
|
|
@ -1 +0,0 @@
|
|||
javac *.java && start rmiregistry
|
|
@ -1 +0,0 @@
|
|||
javac *.java && java AuctionClient
|
|
@ -1 +0,0 @@
|
|||
javac *.java && java AuctionServer
|
Reference in a new issue