fuseki-server.bat 1.2 KB

12345678910111213141516171819202122232425262728
  1. @REM Licensed to the Apache Software Foundation (ASF) under one
  2. @REM or more contributor license agreements. See the NOTICE file
  3. @REM distributed with this work for additional information
  4. @REM regarding copyright ownership. The ASF licenses this file
  5. @REM to you under the Apache License, Version 2.0 (the
  6. @REM "License"); you may not use this file except in compliance
  7. @REM with the License. You may obtain a copy of the License at
  8. @REM
  9. @REM http://www.apache.org/licenses/LICENSE-2.0
  10. @REM
  11. @REM Unless required by applicable law or agreed to in writing, software
  12. @REM distributed under the License is distributed on an "AS IS" BASIS,
  13. @REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. @REM See the License for the specific language governing permissions and
  15. @REM limitations under the License.
  16. @echo off
  17. @REM modify this to name the server jar
  18. java -Xmx1200M -jar fuseki-server.jar %*
  19. @REM Adding custom code to the Fuseki server:
  20. @REM
  21. @REM It is also possible to launch Fuseki using
  22. @REM java ..jvmarsg... -cp $JAR org.apache.jena.fuseki.cmd.FusekiCmd %*
  23. @REM
  24. @REM In this way, you can add custom java to the classpath:
  25. @REM
  26. @REM java ... -cp fuseki-server.jar;MyCustomCode.jar org.apache.jena.fuseki.cmd.FusekiCmd %*