我有以下要求:
我想创建跟随请求(POST)
Private Sub Download(ByVal Down As Integer)
TextBox2.Text = Convert.ToString(Down)
Dim Adresa As String = "http://example.com/files/" + Convert.ToString(Down) + ".zip"
WebClient1.DownloadFileAsync(New Uri(Adresa), FlatTextBox1.Text + "\" + TextBox2.Text + ".zip")
End Sub
Private Sub WebClient1_DownloadProgressChanged(sender As Object, e As Net.DownloadProgressChangedEventArgs) Handles WebClient1.DownloadProgressChanged
ProgressBar1.Value = e.ProgressPercentage
End Sub
Private Sub WebClient1_DownloadFileCompleted(sender As Object, e As System.ComponentModel.AsyncCompletedEventArgs) Handles WebClient1.DownloadFileCompleted
ProgressBar1.Value = 0
'Here place script to download next file..
End Sub
一个新的“请求可能性”在我执行上述URL后,我可以添加跟随POST
localhost:8080/Anwendung/bla?createServlet=machine&input=2&name&state
数据库中的新计算机。现在我可以得到一个GET请求:
localhost:8080/Anwendung/machine?name =&state=off
将机器作为JSON文件。
我的第一个想法是,我为每个“请求可能性”创建一个新的servlet,我在运行时动态添加。在我做了上面的例子后,我有“machine.java”,我在我的服务器(tomcat)中编译和添加(热部署(??))。 有可能吗? 我认为有更好的可能性