I think I figured the server bit out as well. On the Mac, the application is being added to the server using the "artifactId" value in the pom.xml file, while on the PC, it's being added using the...
Type: Posts; User: PDSB_Greg; Keyword(s):
I think I figured the server bit out as well. On the Mac, the application is being added to the server using the "artifactId" value in the pom.xml file, while on the PC, it's being added using the...
Now that my application can build, I'm trying to run it on the server. I've tried Tomcat 6, 7, and vFabric. All of them are giving me a resource cannot be found error on the Mac only. Like the...
That solved it. Thank you!
I've just installed STS on a new Mac OSX 10.8.1. When I create a default Spring MVC Template project, there is an error message in the pom.xml file that says
...
Found my answer. It's controlled by CSS and can be changed in the preferences.
This is likely more of an Eclipse question...Is there a way to get rid of the coloring on the toolbars? The light blue fades look silly and are distracting against the rest of the grey background.
Fixed that now too. It was jQuery's fault. Using $.post() sets the Content-Type in the header to application/x-www-form-urlencoded in the header and there is no way to modify that. So, I'm now...
Just after posting this, I noticed that in the blog post there was the following in the pom.xml file
<!-- Jackson JSON Mapper -->
<dependency>
<groupId>org.codehaus.jackson</groupId>...
I just downloaded STS 2.8.1 and created a Spring MVC application from the template (New -> Spring template project -> Spring MVC).
I've created a controller to return a String instead of a view,...
We have a large query in the format...
SELECT [many fields from joined tables]
FROM
(SELECT COLUMN_VALUE stdnt_id FROM TABLE(SPLIT('A BUNCH OF STUDENT IDS HERE', ','))) stdnt
[many joins...