本人敲的入门 代码
http://git.oschina.net/gxgeek/springboot-elasticsearch
http://git.oschina.net/gxgeek/springboot-elasticsearch
2017-09-13
踩坑 经历 之前没有试过 SpringMVC的 PUT 方式 提交 今天跟老师敲发现 参数解析不了 解决方案 追加Filter 链 (SpringMVC 的解决方案) 在项目中加入 @Component public class PutFilter extends HttpPutFormContentFilter { } 然后PostMan 请求方式改成 x-www-form-urlencoded 不知道老师为什么 可以请求成功 好奇~~~~
2017-09-13
@qq_清风明月_94210669 这位同学果然是很认真很细心的^_^。在这里呢,我也推荐大家直接使用@RestController来替代@Controller和@ResponseBody的组合。另外,在实际工作环境中,我们也要灵活的应用这两个注解,祝学习愉快!
2017-09-13
老师 可以 不用@ResponseBody 注解 因为 RestController 张这样
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Controller
@ResponseBody
public @interface RestController {
String value() default "";
}
已经包含了
另外使用 RestController 想返回试图 可以用 返回 ModelAndView 这个类
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Controller
@ResponseBody
public @interface RestController {
String value() default "";
}
已经包含了
另外使用 RestController 想返回试图 可以用 返回 ModelAndView 这个类
2017-09-13
http://localhost:9200/_plugin/head/
http://localhost:9100/_plugin/head/
http://localhost:9100/_plugin/head/
appender.console.type = Console
appender.console.name = Console
appender.console.layout.type = PatternLayout
appender.console.layout.pattern = [%t] %-5p $c -%m%n
rootLogger.level = info
rootLogger.appenderRef.console.ref = console
appender.console.name = Console
appender.console.layout.type = PatternLayout
appender.console.layout.pattern = [%t] %-5p $c -%m%n
rootLogger.level = info
rootLogger.appenderRef.console.ref = console
2017-09-13