摘要:
在http请求中,有Header和Body之分,读取header使用request.getHeader("..."); 读取Body使用request.getReader(),但getReader获取的是BufferedReader,需要把它转换成字符串,下面是转换的方法。 阅读全文
摘要:
4.0.0 spring-boot-helloworld spring-boot-helloworld 1.0-SNAPSHOT org.springframework.boot spring-boot-starter-parent 0.5.0.BUILD-SNAPSHOT ... 阅读全文
摘要:
spring boot是个好东西,可以不用容器直接在main方法中启动,而且无需配置文件,方便快速搭建环境。可是当我们要同时启动2个springboot工程时,就会有问题,有可能会因为8080端口被第一个应用占用而导致第二个应用无法启动,这时就需要修改其中一个工程的启动端口。 1.可以通过实现Emb 阅读全文