Spring类中调用小程序
如何在Spring控件类中调用小程序?
how to call a applet in spring control class?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在Spring控件类中调用小程序?
how to call a applet in spring control class?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
Spring 主要用于服务器端,而小程序则用于客户端。因此,我假设有两种情况:
您想在小程序中使用 spring - 然后只需发送 spring jar,
applicationContext.xml
并开始实例化ClassPathXmlApplicationContext
例如。Spring is mostly used on server-side, and applets - on client side. So I'd assume two scenarios:
you want to use spring in your applet - then simply ship the spring jars, the
applicationContext.xml
and start with instantiatingClassPathXmlApplicationContext
for example.you want to reuse functionality from an applet on the server side - in that case move that functionality to a helper class, and import it in both the applet and the spring beans.