私は春のコーディングに新しいです。 私は以前に質問しましたが、誰も答えなかったので、私はそれを他の方法で求めています.. !! アプリケーションを単純なJavaからSpring MVCに移動する必要があります。春からMVCチュートリアル
ゼロから情報を提供する良いMVC チュートリアルはありますか ??
私の単純なコードは以下の通りです。
public void run()
{
try
{
DataInputStream din = new DataInputStream (
m_connection.getInputStream());
PrintStream pout = new PrintStream (
m_connection.getOutputStream());
// Read line from client
String data = din.readLine();
// Check to see if we should simulate a stalled server
if (shallWeStall)
{
// Yes .. so reset flag and stall
shallWeStall = false;
try
{
Thread.sleep (20000);
} catch (InterruptedException ie) {}
}
else
{
// No.... but we will next time
shallWeStall = true;
}
// Echo data back to clinet
pout.println (data);
// Close connection
m_connection.close();
}
catch (IOException ioe)
{
System.err.println ("I/O error");
}
}
私はグーグルで試してみましたが、私が見つけたものはすべて始めるのが難しかったです。
ありがとうございました。
Javaベースの構成
でspring mvc Hello Worldの例で学習:// stackoverflowの:元の質問を編集するのではなく、HTTPの重複質問を作成するために、より丁寧考えられるかもしれません.com/questions/7025062/migrating-a-whole-application-from-simple-java-to-spring-mvc。 –
@aleksi:次回からは気を配ります。 –