C# dll 初学者 - 它去哪里了?
所以我创建了我的第一个 C# 类库。我已经创建了我的一种方法。我已经有了我的 dll 并在我的 Web 项目中设置了引用,它可以在本地运行。
现在我创建了 war 文件并将其部署在我们的网络服务器上。
DLL 是否捆绑在 WAR 文件中,还是我需要在 Web 服务器上创建一个包含 DLL 的目录?
抱歉,如果这是一个基本问题,但我似乎找不到答案。
谢谢! 莱斯利
So i've created my first C# Class Library. I've created my one method. I've got my dll and have set the reference in my web project and it works locally.
Now I create my war file and deploy it on our webserver.
Is the DLL bundled in the WAR file or do I need to create a directory on the webserver with the DLL in it?
Sorry if this is a basic question, but I can't seem to find an answer.
Thanks!
Leslie
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的 Web 项目应该有一个 bin 文件夹。你可以把你的dll放在那里。
Your web project should have a bin folder. You can place your dll there.
只要您有对 DLL 的引用,并将其复制到 Web 项目中的 bin 文件夹中,就应该没问题。
As long as you have a reference to your DLL and also have copied it to your bin folder in your web project you should be fine.