I'm working on a web application that makes use of the Spring Data JPA library. The web application is designed using the typical Dao/Service/Web layered architecture. From the service layer, my goal...
Type: Posts; User: russpitre; Keyword(s):
I'm working on a web application that makes use of the Spring Data JPA library. The web application is designed using the typical Dao/Service/Web layered architecture. From the service layer, my goal...
The factory will compile the report when it sees a .jrxml file extension, see the loadReport method. Right, no configuring of views, spring mvc is completely out of the picture here. If you wanted...
I have a JasperReportDetails bean def for each jasper report definition.
<bean id="riskAssessmentReportDetails" class="com.company.reporting.JasperReportDetails">
<property...
I'm not sure what exactly you're looking for but I have a JasperReportsFactory class for generating pdf reports which i then send via email.
package com.company.reporting;
import...
I've never used it myself, but you could try using CXF wsdl2java utility.
http://cwiki.apache.org/CXF20DOC/wsdl-to-java.html
-Russ
I'm starting a thread on the SOA design pattern "Schema Centralization" because i'm curious how others are going about it within their organization, or at all for that matter.
Here's my...
It took me a little while to track down the Maven specifics, here's are maven repository and dependency configuration snippets for SWS 2.0.0-M1.
Repository
<repository>...
spring-security-core-2.0.4.jar
Looks to me like you are missing the spring security jar on your classpath.
+1, I'm wondering too.
I am trying to understand the purpose of javax.inject.Provider interface when used within a Spring based application. Here's an example from the API doc but I don't see the value in it.
In this...
I'm using soapUI to inspect the generated reponses from a spring ws web service. I noticed every namespace from all of the imported xsds are included in the reponse, notice the ns2-8. Below is a...
I'm just getting started with dm server (v2) and osgi. These are all new concepts to me so please bare with me if i confuse any of the terms.
I'm starting a project that requires multiple web...
Is late Q3 or early Q4 still on track?
Another way to avoid this behavior is this:
<%@ include file="/WEB-INF/view/jsp/resources/includes/taglibs.jspf" %>
<%@ taglib prefix="project" tagdir="/WEB-INF/tags/project" %>
<head>
...
Great. Thanks.
Quick question about this article:
http://blog.interface21.com/main/2007/06/26/so-should-you-still-use-springs-hibernatetemplate-andor-jpatemplate/
The author says this in the 3rd paragraph...
Yup, i agree!!!! Thanks for sharing your thoughts!!
I found a solution, i'm not sure if it's the best solution but it works. I think it's the cleanest way to go for my case.
I subclassed org.hibernate.type.StringType like so:
package...
In my test case on i'm calling this method:
Company company = companyDao.getCompany("AM22");
Here's what i see after turning debug on:
Exactly!!!!!!
Yes, you're right (at least in our environment).
The sql that hibernate generates selects ALL of the contacts with both companyIDs 'SP01' and 'sp01'. The issue lies when hibernate populates...
I already posted this on the hibernate forums, i've never had much luck on that forum so i'm also trying here too.
Hibernate version: 3.2
Mapping documents:
<set name="contacts"...
cont'd...
Role domain object.
package com.mycompany.model.security;
import java.util.List;
import org.apache.commons.lang.StringUtils;
import...
Here's a bit of code you may be able to adjust to your environment.
DatabasePathBasedFilterInvocationDefinitionMap.java
package com.mycompany.security.acegisecurity.intercept.web;...