我尝试在客户端 - 服务器项目的登录页面上放置背景图像。
客户端部分使用Spring制作。
把那个背景我做了:
#include <string>
#include <stdio.h>
using namespace std;
template <typename T> struct only_string;
template <> struct only_string<string> {};
struct another_type {
explicit operator bool() const { return true; }
};
// only substitute if T is string
template <typename T>
bool operator !(T) {
only_string<T> a;
return true;
}
int main() {
another_type a;
if (!a) {
return 1;
} else {
return 0;
}
}
我启动客户端应用程序并访问登录页面,但没有背景图像。 当我用浏览器打开login.html页面时,我的背景图像就是。
编辑:已解决:看起来像Spring在&#34;静态&#34;中查找html资源目录。我在那里移动了图片并将网址更改为/login_background.jpg。