spring架構,建立一個全域性使用的application物件
阿新 • • 發佈:2019-01-30
建立一個全域性使用的application物件
@Component
publicclassInitComponent{
@Autowired
privateServletContext applicationScope;
// 初始化時執行該方法
@PostConstruct
publicvoid init(){
applicationScope.setAttribute("resUrl","http://localhost:8123/Search_Link_Res");
}
}
頁面中可以直接取值
<c:setvar="contextPath"value="${applicationScope.get('resUrl')}"></c:set>
當然使用c標籤別忘了在頁面引入
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
使用如下:
<link rel="stylesheet" href="${contextPath}/css/bootstrap.min.css">