Spring-Quartz
- 迁移Spring界面
使用springboot不要将
3.1.3.RELEASE 放入properties中
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);
}
}
- run SampleController.main 启动服务
- http://localhost:8080/访问服务
- 修改上面的文件为application文件
@SpringBootApplication
public class MainClass {
public static void main(String[] args) throws Exception {
SpringApplication.run(MainClass.class, args);
}
}
- 新建一个RestController ```java
@RestController public class GreetingCont{ @RequestMapping(“/greeting”) public Greet greeting(@RequestParam(value=”name”, defaultValue=”World”) String name) { return new Greet(counter.incrementAndGet(), String.format(template, name)); } } ```