Web Service with Java

huangapple go评论76阅读模式
英文:

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 &lt;commandToRunYourService&gt; &amp;

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

huangapple
  • 本文由 发表于 2020年10月11日 18:21:42
  • 转载请务必保留本文链接:https://go.coder-hub.com/64302934.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定