JavaWeb中Controller如何正确调用Service
Service层经常被调用,那么如何正确调用Service层并优化性能。
如下调用
1.在Controller中
XxService XxService = new XxService();
2.在Service中声明
Public static XxService me = new XxService();
在Controller中使用
XxService.me
3.....有没有更好的方式。在不使用依赖注入的情况下
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在controller中
private XxService XxService = new XxService();
直接new一个完事。
不明白为啥你不用注入?