首页>代码>springboot+angularJS简单的增删改查Demo>/boot-angular/src/main/java/com/joe/angularweb/AngularApplication.java
package com.joe.angularweb;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
/**
* Created by 180297 on 2017/12/13.
*/
@SpringBootApplication
@Controller
public class AngularApplication {
@RequestMapping("/")
public ModelAndView index(){
return new ModelAndView("home");
}
public static void main(String[] args) {
SpringApplication.run(AngularApplication.class,args);
}
}
最近下载更多
oulingqiao LV13
2023年12月10日
Van1999 LV1
2023年7月17日
Jianwei153 LV1
2021年12月28日
lyws1986 LV17
2021年12月21日
-leave- LV1
2021年10月21日
f15732905127 LV1
2021年4月18日
aaaa5654 LV1
2021年4月17日
moluofan LV1
2021年3月25日
SpringClouddddd LV1
2021年2月26日
黄伟伟 LV4
2021年2月26日

最近浏览