Spring boot
Zck_csdn
这个作者很懒,什么都没留下…
展开
-
如何在Spring boot中使用Servlet进行开发
1.首先在启动类Application中添加注解,括号中为Servlet所在包的路径 @ServletComponentScan("com.example.app.web.servlet") @EnableTransactionManagement 2.在Servlet上添加WebServlet注解,括号中的url为@ServletComponentScan中定义的路径下的Servlet名称...原创 2020-05-03 10:41:34 · 217 阅读 · 0 评论 -
如何在Spring Boot后端服务器上实现跨域请求
采用全局配置,在main/java/example/下的Application启动类中,定义如下Bean,注意不要导错包! import org.springframework.context.annotation.Bean; import org.springframework.web.filter.CorsFilter; import org.springframework.web.cor...原创 2020-05-03 10:32:16 · 192 阅读 · 0 评论