문제

Does anybody know, how to escape an import like below in scaffolding templates? I want to use this import in my generated views.

<%@ page import="nl.ihomer.enums.Status" %>
도움이 되었습니까?

해결책

You couldn't escape an import in scaffolding templates, because the domain is in the different package. You could replace "Status" to "nl.ihomer.enums.Status" where you use the domain if you must escape an import. Hope that it could help you!

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top