2017年12月11日

springmvc请求参数获取的几种方法

摘要: 1、直接把表单的参数写在Controller相应的方法的形参中,适用于get方式提交,不适用于post方式提交 /** * 1.直接把表单的参数写在Controller相应的方法的形参中 * @param username * @param password * @return */ @Reques 阅读全文

posted @ 2017-12-11 13:23 chenzx0918 阅读(177) 评论(0) 推荐(0) 编辑

Spring Boot 注解的使用

摘要: Spring Boot 优于Spring mvc ,SSM,SSH 的一个亮点就是他使用了好多的注解。 1. @Autowired 这个注解的作用是将其他的类,接口引入,类似于之前的类的初始化等,用这个注解,类中或接口的方法就可以直接调用了。 这个注解和@Inject,@Resource 作用类似, 阅读全文

posted @ 2017-12-11 11:05 chenzx0918 阅读(149) 评论(0) 推荐(0) 编辑

导航