英文:
Web Service with Java
问题
嗨!
我正在进行这个项目。从一个网站收集一些数据,比如姓名、电子邮件等等。
因此,我想要在Java中创建一个网络服务,用于收集这些数据,然后将其插入到数据库中。
我的问题是,在我在Eclipse中创建了这个网络服务之后,
我应该做什么来使网络服务自动运行!?
不需要打开Eclipse项目。当用户插入他的数据时,这些信息会直接进入数据库。
我如何让项目随时运行,无需我的干预。
我只是请求一些指导!
提前感谢。
英文:
Hy !
I this project. Collect some data from a web site. Like name, email etc..
So I want to make a web service in Java, to collect this data and then insert it into a database.
My question is. After I make the web service, in eclipse.
What should I have to do to make the web service automatically !?
Without open the eclipse project. When a user insert his data, those information goes directly into the database.
How can I make the project run at any time, without my intervention.
I only ask for guidance !
Thanks in advance
答案1
得分: -1
你可以使用 nohup
命令。
nohup <要运行的服务命令> &
这个命令会忽略挂断信号。因此,在运行命令后,你可以使用 Ctrl+C
组合键来退出命令,但是你的服务仍然会继续运行。
英文:
You can use the nohup
command.
nohup <commandToRunYourService> &
This command is ignoring the hangup signal. So after that you can just use Ctrl+C
to exit the command but your service will still be running
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论