私は春と春の新機能を試しています。コードサンプルをhttps://projects.spring.io/spring-boot/から実行する際に問題が発生しています。Spring起動方法クイックスタートコード
package hello;
import org.springframework.boot.*;
import org.springframework.boot.autoconfigure.*;
import org.springframework.stereotype.*;
import org.springframework.web.bind.annotation.*;
@Controller
@EnableAutoConfiguration
public class SampleController {
@RequestMapping("/")
@ResponseBody
String home() {
return "Hello World!";
}
public static void main(String[] args) throws Exception {
SpringApplication.run(SampleController.class, args);
}
}
私はmvn install
を発行し、すべてがうまくように見えます。しかし、java -cp target/myArtifId-1.0-SNAPSHOT.jar hello.SampleController
を発行し、ClassNotFoundExceptionがスローされました。
このコードサンプルはどのように実行しますか?
あなたは、春ブートする初心者であれば、キックスタートするには、このアプローチを参照してください。 http://stackoverflow.com/questions/39245732/java-lang-noclassdeffounderror-org-springframework-core-env-configurableenviron/39246493#39246493 –
@SpringBootApplicationアノテーションがありません –