我正在使用maven创建一个项目,如下所示
mvn archetype:generate -B -DgroupId=com.myApplication -DartifactId=MyApplication -
DarchetypeGroupId=org.apache.struts -DarchetypeArtifactId=struts2-archetype-starter -
DarchetypeVersion=2.3.7
之后在struts.properties
文件中我正在改变
struts.ui.theme=xhtml
到
struts.ui.theme=simple
但是当我运行应用程序时,simple
主题不适用。
答案 0 :(得分:1)
在项目和部署中查找文件struts.properties
struts.xml
。在运行之前和运行之后检查每个找到的文件是否包含必要的更改struts.xml
不包含<constant name="struts.ui.theme"
。如果无法尝试在磁盘或计算机上搜索关键字struts.ui.theme
。 HTH