Restaurando Projeto a partir de banco de dados
-
Olá. Nós próximos dias, estarei começando um trabalho de manutenção em um aplicativo feito na versão bootstrap do Maker. Os antigos desenvolvedores nos enviaram arquivos para restaurar o projeto a partir do banco de dados. Conseguimos fazer esta parte com sucesso, podendo ver os fluxos e formulários existentes, mas não consigo visualizar nenhum formulário, ou mesmo abrir na Web o sistema. Estou tendo o seguinte erro:
Parece problema de versão? O que vocês sugerem para concertar o problema? -
@Ruanrs Boa tarde.
Não existe problema de versão.
Provavelmente o sistema deve utilizar biblioteca externa, que não está presente nessa versão do seu projeto, sendo assim, este erro pode ser apresentado.
Consulte o log da aplicação com o parâmetro DebugMode ativo, assim, você obterá mais detalhes do que está ocasionando a exceção.
Outro ponto que pode ser verificado é se a
API de Funções
do sistema foi atualizada.Cordialmente.
-
@Janpier-dos-Santos Bom dia Janpier! você parece estar completamente certo, olhando aqui com o debug ligado parece ser exatamente isso. Junto com os arquivos de sql utilizados para restaurar o projeto, recebemos também uma pasta com a seguinte estrutura: . Acredito que o que está causando esse erro é a falta dos arquivos que estão dentro da pasta js.
E também recebemos um arquivo de texto com diversos links para bibliotecas. Você poderia me dar uma luz em relação a onde colocar estes arquivos no projeto novo? Eu procurei no manual mas não tive sucesso. Desde já agradeço sua ajuda. -
@Ruanrs, Bom dia.
O IDE Maker oferece um recurso denominado Maker.Commos.
Com essa configuração você consegue copiar conteúdos desta pasta para o seu contexto de forma automática, basta seguir a documentação.
Como você está utilizando recursos externos lembre-se de verificar a compatilidade das bibliotecas com a versão do JDK utilizada na versão do Webrun.
Lembre-se que utilizando bibliotecas externas não existe suporte para este recurso.
Cordialmente
-
@Janpier-dos-Santos Bom dia, estou ciente da funcionalidade da Maker.Commons, mas para ela funcionar eu preciso saber o caminho correto onde esses arquivos vão terminar correto? Eu não sei qual é o caminho correto para colocar esses arquivos que vieram junto com o projeto. Tem no manual algo que possa me mostrar como montar a estrutura da Maker.Commons para esse caso?
-
@Ruanrs, Bom dia.
A estrutura do sistema de arquivos para sobrepor ou adiciona no contexto padrão do
Webrun
deve seguir a sua estruturação, exemplo:- "Para inserir biblioteca externa o diretório é:
WEB-INF/lib
, sendo assim, os arquivos dentro desta pasta serão copiadas para o mesmo caminho do contexto da aplicação."
Cordialmente.
- "Para inserir biblioteca externa o diretório é:
-
@Ruanrs, Boa tarde.
Arquivo .JS não causam erro de compilação na aplicação. No post anterior você comentou que recebeu os links das bibliotecas, todas elas são JS?
Se for possível coloca os links no post e mais detalhes do erro de compilação.Cordialmente.
-
@Janpier-dos-Santos Bom dia! Peço desculpas pela demora em fornecer mais detalhes. Os links que eu recebi, após inspeção, parecem ser relacionados apenas a JS, CSS e fontes. Eu tenho a impressão que os arquivos .JAR que eu precisava colocar no caminha WEB-INF/lib não vieram junto com os fontes do projeto. O erro de compilação que recebo é o seguinte: Exceção Gerada: wfr.exceptions.WFRCompileException: java.lang.Exception: C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java:3041: error: cannot find symbol if (elemGrid.isEnableNumberOfRecords()) { ^ symbol: method isEnableNumberOfRecords() location: variable elemGrid of type HTMLGrid C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java:3042: error: cannot find symbol elemGrid.setTotalRows(elemGrid.getNavigation().getTotalRows(form.getCodeStr(), request)); ^ symbol: method setTotalRows(int) location: variable elemGrid of type HTMLGrid C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java:7864: error: package wfr.web.manage.session does not exist return VariantPool.get( wfr.web.manage.session.ManageSessions.getInstance().getInfoJsonSystemSessions(system.getObject() != null ? system.getString() : "")); ^ C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java:8693: error: cannot find symbol if (elemGrid.isEnableNumberOfRecords()) { ^ symbol: method isEnableNumberOfRecords() location: variable elemGrid of type HTMLGrid C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java:8694: error: cannot find symbol elemGrid.setTotalRows(elemGrid.getNavigation().getTotalRows(idForm, request)); ^ symbol: method setTotalRows(int) location: variable elemGrid of type HTMLGrid C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java:18079: error: cannot find symbol return Functions.sendEmail(props, userVar, passwordVar, fromVar, toVar, subjectVar, bodyVar, html, attachmentVar); ^ symbol: method sendEmail(Properties,Variant,Variant,Variant,Variant,Variant,Variant,Variant,Variant) location: class Functions C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java:18125: error: cannot find symbol return Functions.sendEmail(props, userVar, passwordVar, fromVar, toVar, subjectVar, bodyVar, html, attachmentVar); ^ symbol: method sendEmail(Properties,Variant,Variant,Variant,Variant,Variant,Variant,Variant,Variant) location: class Functions Note: C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java uses or overrides a deprecated API. Note: Recompile with -Xlint:deprecation for details. Note: C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. 7 errors at wfr.util.Functions.compileFile(SourceFile:3888) at wfr.util.Functions.compileFile(SourceFile:3844) at wfr.util.Functions.compileFile(SourceFile:3821) at wfr.rules.FlowMethodsManager.compileJavaFunctions(SourceFile:427) at wfr.rules.FlowMethodsManager.compileJavaFunctions(SourceFile:380) at wfr.com.WFRSystem.create(SourceFile:888) at wfr.com.WFRSystem.create(SourceFile:794) at wfr.com.WFRDBSystem.<init>(SourceFile:41) at wfr.com.WFRSystem.getInstance(SourceFile:352) at wfr.com.WFRSystem.getInstance(SourceFile:317) at wfr.sys.WFR.<init>(SourceFile:23) at wfr.sys.WFRLoader.a(SourceFile:166) at wfr.sys.WFRLoader.getWFR(SourceFile:155) at wfr.sys.HTMLInterface.HTMLInterface.getInstance(SourceFile:160) at wfr.sys.HTMLInterface.HTMLInterface.getInstance(SourceFile:146) at wfr.sys.HTMLInterface.HTMLInterface.getInstance(SourceFile:142) at wfr.web.Action.<init>(SourceFile:90) at wfr.web.Action.<init>(SourceFile:70) at wfr.web.actions.LogonAction.<init>(SourceFile:25) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:423) at wfr.web.ActionFactory.getAction(SourceFile:72) at wfr.web.Controller.process(SourceFile:134) at wfr.web.Controller.doPost(SourceFile:72) at javax.servlet.http.HttpServlet.service(HttpServlet.java:660) at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at wfr.web.ContextFilter.doFilter(SourceFile:117) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) at org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:678) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:367) at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:860) at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1598) at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) at java.lang.Thread.run(Thread.java:745) Caused by: java.lang.Exception: C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java:3041: error: cannot find symbol if (elemGrid.isEnableNumberOfRecords()) { ^ symbol: method isEnableNumberOfRecords() location: variable elemGrid of type HTMLGrid C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java:3042: error: cannot find symbol elemGrid.setTotalRows(elemGrid.getNavigation().getTotalRows(form.getCodeStr(), request)); ^ symbol: method setTotalRows(int) location: variable elemGrid of type HTMLGrid C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java:7864: error: package wfr.web.manage.session does not exist return VariantPool.get( wfr.web.manage.session.ManageSessions.getInstance().getInfoJsonSystemSessions(system.getObject() != null ? system.getString() : "")); ^ C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java:8693: error: cannot find symbol if (elemGrid.isEnableNumberOfRecords()) { ^ symbol: method isEnableNumberOfRecords() location: variable elemGrid of type HTMLGrid C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java:8694: error: cannot find symbol elemGrid.setTotalRows(elemGrid.getNavigation().getTotalRows(idForm, request)); ^ symbol: method setTotalRows(int) location: variable elemGrid of type HTMLGrid C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java:18079: error: cannot find symbol return Functions.sendEmail(props, userVar, passwordVar, fromVar, toVar, subjectVar, bodyVar, html, attachmentVar); ^ symbol: method sendEmail(Properties,Variant,Variant,Variant,Variant,Variant,Variant,Variant,Variant) location: class Functions C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java:18125: error: cannot find symbol return Functions.sendEmail(props, userVar, passwordVar, fromVar, toVar, subjectVar, bodyVar, html, attachmentVar); ^ symbol: method sendEmail(Properties,Variant,Variant,Variant,Variant,Variant,Variant,Variant,Variant) location: class Functions Note: C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java uses or overrides a deprecated API. Note: Recompile with -Xlint:deprecation for details. Note: C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. 7 errors at wfr.util.Functions.compileFile(SourceFile:3880) ... 52 more Causa: java.lang.Exception: C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java:3041: error: cannot find symbol if (elemGrid.isEnableNumberOfRecords()) { ^ symbol: method isEnableNumberOfRecords() location: variable elemGrid of type HTMLGrid C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java:3042: error: cannot find symbol elemGrid.setTotalRows(elemGrid.getNavigation().getTotalRows(form.getCodeStr(), request)); ^ symbol: method setTotalRows(int) location: variable elemGrid of type HTMLGrid C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java:7864: error: package wfr.web.manage.session does not exist return VariantPool.get( wfr.web.manage.session.ManageSessions.getInstance().getInfoJsonSystemSessions(system.getObject() != null ? system.getString() : "")); ^ C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java:8693: error: cannot find symbol if (elemGrid.isEnableNumberOfRecords()) { ^ symbol: method isEnableNumberOfRecords() location: variable elemGrid of type HTMLGrid C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java:8694: error: cannot find symbol elemGrid.setTotalRows(elemGrid.getNavigation().getTotalRows(idForm, request)); ^ symbol: method setTotalRows(int) location: variable elemGrid of type HTMLGrid C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java:18079: error: cannot find symbol return Functions.sendEmail(props, userVar, passwordVar, fromVar, toVar, subjectVar, bodyVar, html, attachmentVar); ^ symbol: method sendEmail(Properties,Variant,Variant,Variant,Variant,Variant,Variant,Variant,Variant) location: class Functions C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java:18125: error: cannot find symbol return Functions.sendEmail(props, userVar, passwordVar, fromVar, toVar, subjectVar, bodyVar, html, attachmentVar); ^ symbol: method sendEmail(Properties,Variant,Variant,Variant,Variant,Variant,Variant,Variant,Variant) location: class Functions Note: C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java uses or overrides a deprecated API. Note: Recompile with -Xlint:deprecation for details. Note: C:\Program Files (x86)\Softwell Solutions\Maker Studio Bootstrap\Webrun Studio Bootstrap\tomcat\webapps\SeuRH\src\wfr\com\systems\system_srh\rules\WebrunFunctions.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. 7 errors at wfr.util.Functions.compileFile(SourceFile:3880) at wfr.util.Functions.compileFile(SourceFile:3844) at wfr.util.Functions.compileFile(SourceFile:3821) at wfr.rules.FlowMethodsManager.compileJavaFunctions(SourceFile:427) at wfr.rules.FlowMethodsManager.compileJavaFunctions(SourceFile:380) at wfr.com.WFRSystem.create(SourceFile:888) at wfr.com.WFRSystem.create(SourceFile:794) at wfr.com.WFRDBSystem.<init>(SourceFile:41) at wfr.com.WFRSystem.getInstance(SourceFile:352) at wfr.com.WFRSystem.getInstance(SourceFile:317) at wfr.sys.WFR.<init>(SourceFile:23) at wfr.sys.WFRLoader.a(SourceFile:166) at wfr.sys.WFRLoader.getWFR(SourceFile:155) at wfr.sys.HTMLInterface.HTMLInterface.getInstance(SourceFile:160) at wfr.sys.HTMLInterface.HTMLInterface.getInstance(SourceFile:146) at wfr.sys.HTMLInterface.HTMLInterface.getInstance(SourceFile:142) at wfr.web.Action.<init>(SourceFile:90) at wfr.web.Action.<init>(SourceFile:70) at wfr.web.actions.LogonAction.<init>(SourceFile:25) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:423) at wfr.web.ActionFactory.getAction(SourceFile:72) at wfr.web.Controller.process(SourceFile:134) at wfr.web.Controller.doPost(SourceFile:72) at javax.servlet.http.HttpServlet.service(HttpServlet.java:660) at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at wfr.web.ContextFilter.doFilter(SourceFile:117) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) at org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:678) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:367) at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:860) at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1598) at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) at java.lang.Thread.run(Thread.java:745)
Em outra nota, também preciso encontrar o caminho correto para colocar as bibliotecas de JS e os arquivos CSS que recebi, se você ou algum outro membro do fórum poder me indicar o caminho correto, ficarei grato.
-
@Ruanrs, bom dia.
Pelos detalhes do erro, provavelmente você está com a versão atualizada da API de Funções e a versão do Webrun não. Sendo assim, o erro está sendo lançado.
Certifique-se de está com a versão compatível da API e Webrun. Isso pode ser visto no histórico de alteraçõe da versão no manual.
Em outra nota, também preciso encontrar o caminho correto para colocar as bibliotecas de JS e os arquivos CSS que recebi, se você ou algum outro membro do fórum poder me indicar o caminho correto, ficarei grato
Para o questionamento acima, vai depender como o caminho dos arquivos estão sendo importados na aplicação.
Segue um exemplo abaixo da utilização do recurso Maker.CommonsObserve que na imagem, a pasta Maker.Commons contém duas estruturas de pastas que estão presente no meu contexto. Quando a aplicação for carregada esses arquvios serão copiados seguindo essa estruturação. A pasta que não está presente no contexto
meujs
passará a existir, pois tudo o que está presente em Maker.Commos é copiado para o contexto.Quando utilizamos esse recurso é necessário reiniciar o servidor de aplicações.
Cordialmente.
-
Bom dia @Janpier-dos-Santos Janpier! então, eu atualizei a versão do webrun e tudo mais, agora não aparece mais erro de compilação, e eu consigo abrir alguas coisas, como ver a estrutura dos componentes integração e etc, mas quando tento visualizar algum formulário ou abrir o projeto na web ele fica carregando para sempre
Alguma ideia de porque isso possa estar acontecendo? -
Mais uma atualização: Agora estou conseguindo visualizar o projeto, mas parece ter algo errado com a forma como o Maker está interpretando os componentes integração, a página está carregando da seguinte maneira:
Por algum motivo o conteúdo de algumas das tags <script> está sendo renderizado na tela (mesmo a sintaxe estar correta, pelo menos ao meu ver), e parece que não está pegando estilos e coisas do tipo. Estou tendo dificuldades em encontrar a causa destes problemas. -
@Janpier-dos-Santos Como posso verificar isso? você poderia esclarecer?