I was researching for converting my Spring-Boot application into windows service, i was recommended to use either YAJSW or NSIS, can anyone please explain the difference between two?
Difference between YAJSW (Yet Another Service Wrapper) and NSIS (Nullsoft Scriptable Install System)
275 Views Asked by Shivam Yadav At
1
There are 1 best solutions below
Related Questions in NSIS
- can anyone help me for NSIS Script I have a case where I need to check cases can be 3.3 3.42 23.5 23.56w 3.467 999.999 999.99a but not 1.b or 8..a
- Can't use Pop to get control variable
- How will create the updater & repair window's in NSIS using NULL SCRIPT
- WPF app's icon not updated when the exe file is updated
- Two electron applications installed but same desktop shortcut
- NSIS Script - Check existence of .Net Framework 4.8 and install it
- Integrate the nsis installer with electron application. But, Desktop application window not open
- Registering COM Object on Windows 64-bit For Use In Excel-32 Bit Is Failing
- Error: spawn ./assets/softwares/csharpSoftware.exe ENOENT
- Closing a Windows Background application with NSIS
- How to make an NSIS installer like Notion's?
- Electron Builder issue
- How can .NET Core installer projects depend on the publish output?
- How can I use NSIS to make an installer that will immediately unpack and run files?
- How do I center the UI and stretch the shape over the entire resolution? NSIS
Related Questions in YAJSW
- Is there any way to run wso2am-analytics with yajsw-stable-12.14?
- Wrapper stopped successful message and wrapper service stopping status is not in sync
- Installing OWASP ZAP as Service on Windows 10
- Difference between YAJSW (Yet Another Service Wrapper) and NSIS (Nullsoft Scriptable Install System)
- remote-debug yajsw-wrapped application with JDK>=9
- Unable to run WSO2 EI & MI as window services?
- Using YAJSW to run a jar as a windows service
- YAJSW remote debug the application
- How to set default file permissions for Java
- How to run a services as some user(other than root) using YAJSW?
- I ain't able to create Windows Service in WSO2
- Inconsistent behaviour with paths in YASJW batch scripts
- Start WSO2 Enterprise Integrator as a service in windows not work
- Service startup issue in YAJSW
- WSO2 as service on Windows
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
NSIS is mainly a installer utility for other applications. While it does have some plug-ins for installing/starting/stopping services, it cannot be used to create a "Java application as a service" per se. You could use it as a generic Java application launcher and let the Java application itself call the service functions but it is probably a better idea to just use tools specifically built for this task.