[THYMELEAF][http-nio-8000-exec-9] Exception processing template "addDataDept": Error resolving template [addDataDept], template might not exist or might not be accessible by any of the configured Template Resolvers
遇到这种问题就是因为没搞懂springboot中controller中的注解,详情可看以下:
1、@Controller:用于定义控制器类,在spring项目中由控制器负责将用户发来的URL请求转发到对应的服务接口(service层),一般这个注解在类中,通常方法需要配合注解@RequestMapping。
2、@RestController:用于标注控制层组件(如struts中的action),@ResponseBody和@Controller的合集。
3、@RequestMapping:提供路由信息,负责URL到Controller中的具体函数的映射。
4、@Autowired:这个注解的作用是将其他的类,接口引入,类似于之前的类的初始化等,用这个注解,类中或接口的方法就可以直接调用了。
5、@RequestMapping:当前台界面调用Controller处理数据时候告诉控制器怎么操作,作用:URL映射。
6、@GetMapping:@RequestMapping(method = RequestMethod.GET)的简写,作用:对应查询,表明是一个查询URL映射
7、@PostMapping:@RequestMapping(method = RequestMethod.POST)的简写,作用:对应增加,表明是一个增加URL映射
8、@DeleteMapping:@RequestMapping(method = RequestMethod.DELETE)的简写,作用:对应删除,表明是一个删除URL映射
9、@PutMapping:PUT方式提交时, 根据request header Content-Type的值来判断。