Questions tagged [appfuse]

AppFuse is a full-stack framework for building web applications on the JVM. It was originally developed to eliminate the ramp-up time found when building new web applications. Over the years, it has matured into a very testable and secure system for creating Java-based webapps.

AppFuse is a full-stack framework for building web applications on the JVM. It was originally developed to eliminate the ramp-up time found when building new web applications. Over the years, it has matured into a very testable and secure system for creating Java-based webapps. At its core, AppFuse is a project skeleton, similar to the one that's created by your IDE when you click through a wizard to create a new web project.

References:

116 questions
0
votes
1 answer

appfuse configuring jdbc.properties

I have created a project in appfuse. I've changed the data in my jdbc.properties file and when I run the command jetty:run, it created my database and appfuse tables like app_user but after that it gets an "BUILD FAILURE" and it returns an error…
Dandelion
  • 744
  • 2
  • 13
  • 34
0
votes
0 answers

Perhaps you are running on JRE rather than JDK

I made a project by appfuse.The command is: mvn archetype:generate -B -DarchetypeGroupId=org.appfuse.archetypes -DarchetypeArtifactId=appfuse-light-spring-security-archetype -DarchetypeVersion=3.5.0 -DgroupId=com.mycompany -DartifactId=myproject…
B.king
  • 1
0
votes
1 answer

AppFuse: mvn jetty:run cannot find symbol

I'm trying to do some basic application in AppFuse (multi-modular) and I'm stuck with this error. I have an DailyRecord entity, DailyRecordDao interface, DailyRecordDaoHibernate class, and DRManagerImpl class. There are three methods in…
Cajova_Houba
  • 44
  • 1
  • 9
0
votes
1 answer

Appfuse 3.5 and DB2

I am trying to create a webapp using appfuse. By default appfuse configures the app to work with a MySQL database, however I'd like use a DB2 database. Since Appfuse uses hibernate and Spring this should be a fairly straightforward configuration…
Greg W
  • 1
  • 2
0
votes
1 answer

Spring project expects to be at root directory, freaks out when it's not

I have a spring project that works beautifully when it's located at the web root - i.e. http://myserver/index.html but it breaks terribly when it's not - i.e. http://myserver/spring-project/index.html Is there a way to configure spring to live in a…
maxdj
  • 427
  • 2
  • 5
  • 15
0
votes
0 answers

Named queries in Appfuse

I used to have named query methods in Repository interface without an implementation (like findByMember(Member m)). Or interface methods with @Query annotation, again without implementation. In Appfuse, Repository interfaces have implementation…
JRr
  • 1,552
  • 1
  • 19
  • 23
0
votes
1 answer

Unable to connect Appfuse Spring app with Heroku Postgres database

I'm trying to deploy the basic Appfuse Spring app to heroku. When I push the code to heroku it successfully builds, but when I try to open the page I get an Application Error page. I believe the problem is with connecting to heroku's postgres db and…
legionar
  • 75
  • 2
  • 8
0
votes
1 answer

Saving owned/child objects in Hibernate

I'm having a hard time wrapping my head around the way hibernate objects work. Here's a little chunk of what my model looks like: JobOpening: @ManyToMany(fetch=FetchType.EAGER,cascade=CascadeType.ALL) @JoinTable( …
maxdj
  • 427
  • 2
  • 5
  • 15
0
votes
1 answer

Appfuse-Maven Date picker not being shown

I have developed a webmodule using Appfuse. I had a predefined database with few tables which had Date field in it. I am able to successfully run appfuse using Jetty, However instead of showing me the date picker it is just showing Text field where…
Vinay Jayaram
  • 1,030
  • 9
  • 29
0
votes
0 answers

Maven-Jetty ERROR freemarker.runtime - freemarker.template.TemplateModelException

I am getting following error message when i run mvn appfuse:gen-model 16:52:36,198 ERROR freemarker.runtime - freemarker.template.TemplateModelException: Method public java.lang.String org.h …
Vinay Jayaram
  • 1,030
  • 9
  • 29
0
votes
0 answers

Maven compilation error : Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3. 0

I am getting following error while running mvn compile [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.0:compile (default-compile) on project fitnessAdmin: Compilation failure: Compilation failure: [ERROR]…
Vinay Jayaram
  • 1,030
  • 9
  • 29
0
votes
1 answer

Appfuse spring security hasRole() not working

I'm trying appfuse and I have added some custom menus in menu.jsp (no doing in menu-config.xml because I would like to add some glyphicon, and struts menu can't do it) so for hide/show menus I wanted to use spring security authorized…
Yichz
  • 9,250
  • 10
  • 54
  • 92
0
votes
0 answers

Appfuse Tutorial troubles - BeanCreationException

I'm working through the Appfuse tutorial for version 3.5 (as previously advised by Matt Raible in response to another question). I'm on this step: http://appfuse.org/display/APF/Using+Spring+MVC#UsingSpringMVC-listview But when I build (mvn…
Armon Inez
  • 23
  • 3
0
votes
1 answer

The archetype for appfuse is not configured and the build fails

I am running AppFuse from the command line. I have Maven 3.2.1 and Java 1.7 installed. I am getting the error: archtype not configured. I am a bit surprised because I am using the commands from the appfuse website. Here is the command I am…
Dave
  • 185
  • 1
  • 3
  • 13
0
votes
1 answer

appfuse 3.5 hbm2ddl schema export fail

I tried appfuse 3.5(basic+springMVC) a few days ago,I plan to use oracle so I edit pom.xml's…
yuxh
  • 924
  • 1
  • 9
  • 23