Java Web 应用程序的安装程序
我用 C#、ASP.NET 和 SQL Server Express Edition 开发了 Web 应用程序。
我已使用 Visual Studio 2010 为该应用程序创建了安装程序 (setup.exe)。
此安装程序会检查 IIS、.NET Framework 和 SQL Server 等必备软件。
我已将所有需要的软件捆绑在安装程序中,如果未安装,它们将安装在用户计算机上。
我将使用 Structs2、Oracle 和 Tomcat 等开发 Web 应用程序。
我想为 Structs2 应用程序创建与上面相同的安装程序。
我正在检查以下软件
Actual Installer、Advanced Installer、BitRock InstallBuilder、Inno Setup、Install Creator、Installer VISE for Windows、InstallShield、install4j、IzPack、NSIS、openInstaller、Scriptlogic MSI Studio、Smart Install Maker、Symantec Wise Installation Studio 和 WiX 。
知道什么软件适合完成上述任务吗?
- 谢谢。
I have developed Web Application in C#, ASP.NET and SQL Server Express Edition.
I have created installer (setup.exe) for the application using Visual Studio 2010.
This installer checks for prerequisites software like IIS, .NET Framework and SQL Server.
I have bundle all require software in installer and they get install on user machine if not installed.
I will be developing Web application using Structs2, Oracle, and Tomcat etc.
I want to create same installer like above for Structs2 application.
I am checking following softwares
Actual Installer, Advanced Installer, BitRock InstallBuilder, Inno Setup, Install Creator, Installer VISE for Windows, InstallShield, install4j, IzPack, NSIS, openInstaller, Scriptlogic MSI Studio, Smart Install Maker, Symantec Wise Installation Studio, and WiX.
Any idea what will be suitable software for above tasks?
- Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用高级安装程序,您可以使用预定义的向导来创建 Java、Tomcat Web 应用程序等的安装包...对先决条件的支持非常强大且易于使用,提供了大量预定义的向导,但您也可以创建新的向导与您的自定义设置。
它还允许您使用多种配置执行 SQL 脚本,甚至是在安装时生成其内容的脚本。
它的 GUI 允许您轻松使用应用程序,而不会失去任何自定义功能,并且它的 CLI(命令行界面)允许您在配置完成后自动执行构建。
Using Advanced Installer you can use predefined wizards for creating setup packages for Java, Tomcat Web applications, etc... The support for prerequisites is very powerful and easy to use, providing a large number of predefined ones, but you can also create new ones with your custom settings.
It also allows you to execute SQL scripts using multiple configurations, even scripts with their content generated at install time.
Its GUI allows you to easily get along with the application without loosing any customization power, and its CLI (command line interface) allows you to automate your builds once you got them configured.