Tag: imageurl

从不同的URL但相同的域加载jsp中的图像?

我正在尝试将图像加载到位于类路径上’ files ‘文件夹中的jsp中。 我尝试加载图片的.jsp的URL是http://www.my-webapp.com/authenticated/dashboard 。 问题是jsp正在’ authenticated ‘文件夹中搜索’ files ‘文件夹而不是类路径。 这是我使用Google Chrome的“Inspect Element”时获得的url: 如何告诉我的jsp在classpath上搜索’ files文件夹但在’ authenticated ‘文件夹中没有? 我的struts.xml (如果需要): /authenticated/dashboard.jsp 谢谢

匹配所有url,不包括jpg,gif,png

我想匹配所有url但排除与该正则表达式匹配的图像url:jpe?g | gif | png。 (?:HTTPS | FTP |文件):\ b // [?-A-Z0-9 + @#/%=〜_ | $!。;] * A-Z0-9 + @# /%=〜_ | $ 问题是带有排除的部分不是这样的:(?!jpe?g | gif | png) 有人有解决方案吗? 例: 不是马辰: http://example.com/example.jpg http://example.com/example231/example.gif 比赛: http://example.com/example.html http://example.com/example/?id=4331 http://example.com/example/example/ex_ample/ex-ample/?id=4331