Spring Boot
文章平均质量分 76
苏美尔人的天空
这个作者很懒,什么都没留下…
展开
-
Spring 注解学习笔记
声明Bean的注解:@Component : 组件,没有明确的角色@Service : 在业务逻辑层(service层)使用@Repository : 在数据访问层(dao层)使用.@Controller : 在展现层(MVC--SpringMVC)使用注入Bean的注解:@Aautowired : Spring提供的注解.@Inject : JSR-330提供转载 2017-09-04 15:05:24 · 452 阅读 · 0 评论 -
使用Spring Boot的跨源CORS设置
1. 问题在学习Angular时,使用以下代码发起POST请求,this.http.post("http://localhost:8899/login", body, {headers: headers})会出现以下错误提示。已拦截跨源请求:同源策略禁止读取位于 http://localhost:8899/login 的远程资源。(原因:CORS 头转载 2018-03-19 23:37:54 · 516 阅读 · 0 评论