Tag Info

New answers tagged

0

Hibernate issue. Show us the code behind the Ajax call so we can we can help you.


0

My guess is that Spring data JPA creates the repo implementation as a Java proxy which is final and then <aop:aspectj-autoproxy /> attempts to to create another proxy per your aspect using cglib subclassing which won't work. Is proxy-target-class set to true on the autoproxy element?


0

Your problem is that the hibernate Session lives only for one request. It opens in the start of the request and closes at the end. You guessed the answer: Hibernate session is closed before both requests are finished. Exactly what is happening? Your entity objects live during both requests. How? The are stored in the HTTP session (which is a different thing ...


0

"could not initialize proxy - no Session" This is an Hibernate only error. There's absolutely no necessary relationship between a POST, an Ajax request and a Hibernate Session Object. There is something that am I doing wrong calling twice the same methods from the same user session? Again, user sessions have no direct relationship to Hibernate ...


0

Try removing the 'value' attribute, 'path' should be all you need there. Also make sure the getter and setter are valid.


0

Instead of using syntax ${APP_NAME} I used #{ systemProperties['APP_NAME'] } and it is working in both the webapps. There is one difference between two webapps, that is spring-version. 3.1.0.RELEASE 3.1.1.RELEASE This syntax ${APP_NAME} is working in webapp with 3.1.1 version. Though upgrading the other app to 3.1.1 version made ...


0

what is the difference between .createQuery and .createSQLQuery? when using createSQLQuery should query start with SELECT * FROM... ? your getbyname uses createSQLQuery and getbyid uses createQuery?


0

I think, your security context loads before your servlet-context, which holds the configuration for your DAOs. When security loads, DAOs haven't been scanned, hence nothing to inject! Use @Required to check. I do the following for my project : in root-context.xml <context:component-scan use-default-filters="true" ...


0

Your web.xml is creating two Spring application contexts. Let's call them Security (after security-context.xml) and Servlet (after servlet-context.xml). Security is created by the ContextLoaderListener listener, and Servlet is created by the DispatcherServlet servlet. Security is the parent of Servlet. That means that the beans in Security are only visible ...


0

The mapped URL's for the methods that are not working end with .html. That doesn't make sense because you are returning JSON data. I suggest you change the mapping like: @RequestMapping(value="/testJson.json", method=RequestMethod.GET) Because of the extension, Spring sets the request's media type to html, so it is not forwarded to a JSON view.


3

Increasing your PermGen space is fairly easy. You can increase it for all of you projects in Eclipse by going to the eclipse.ini file and changing the parameter -XX:MaxPermSize to whatever size fits your needs. You will see what the current size of it is and figure out from there what you want to change it to. If you want to increase the PermGen size for ...


0

You've made your DAO transactional, so it shouldn't be surprising that each DAO method causes a separate transaction. DAO methods should never be transactional. Transactions belong at the service layer.


0

Ok, after seeing this my guess is that the problem is one of Spring-JSF integration. The problem could be caused by the fact that you are using a Spring transaction Manager. But your Beans are managed and injected by JSF (@ManagedBean and @ManagedProperty). This might cause some unexpected transaction behaviour. To solve this my suggestion would be to put ...


0

Ok, solved, for any future lookup, I have to say that the problem was solve by changing these directory file paths, to a mounting point with more memory assigned(The problem was NN is low on memory): dfs.name.dir=${HOME}/path-to-desired-location instead of the basepath stated by default: dfs.name.dir=/dfs/nn And I also have to do the very same thing on ...


0

Send a message to it and see if you get a (proper) reply.


0

Put this class next to your controller: final class FeatureStatusJsonObject { public FeatureStatus status; } And then in the controller method use this: @RequestBody FeatureStatusJsonObject updated and get the real FeatureStatus by updated.status This makes the conversion from a JSON object to an Enum literal explicit in your code, and allows ...


1

I would first recommend you to go through coding conventions by Java. You could then look at the standards that are following for its own API (Collections, ThreadLocal, java.util classes). src.zip located at $JAVA_HOME of the installation for accessing the sourcecode (IDEs should generally resolve it). If you like to look at more, try other popular ...


0

You can do a simple test in your project to make sure class "org.postgresql.Driver" is on your classpath try { Class.forName("org.postgresql.Driver"); //on classpath } catch(ClassNotFoundException e) { // not on classpath }


0

try to enable hibernate validation "jsr303" with spring mvc @Future @Past Link


0

try to use Hibernate validation with spring mvc check this link you can customize you message to using properties files


0

The order of the namespaces is irrelevant. Make sure the spring-data-jpa artifact is on your classpath, and double check the schema version. There's no such thing as spring-jpa-2.0. It should be somewhere between 1.0 and 1.3. With Spring, you can usually also omit the version and get the latest schema by default.


0

You need to clarify the following about mongoDB: 1. MongoDB is a document oriented database, in which the documents are stored in a format called BSON and limited to a maximun of 16MB. "Think of BSON as a binary representation of JSON (JavaScript Object Notation) documents"[1]. The BSON format support a BinData type, in which you can store the binary ...


2

Spring uses commons-logging framework for logging. So you should exclude commons-logging dependency from Spring using Maven exclusion and add maven dependency to jcl-over-slf4j


0

I've used the following method to do this, but maybe it's a bit hacky. Create your mapper as normal, but add another interface method to create the table: @Insert("create table if not exists students (name integer)") public void createTable(); Then, in your service class, create a method with the @PostContructannotation so that it gets called at startup: ...


0

If it is required for your class to work (and it probably is in a DAO), it should be a constructor argument not a property. Since you are autowiring, you need neither. Make it protected in the parent and autowire it. Your child will have a reference to it.


-2

private SessionFactory sessionFactory; I think this line is problem. If you change it to private SessionFactory sessionFactory=new SessionFactory(...); It should work.


0

I've fixed this issue in Grails setting a font for my barcode and overwriting the calculateSize() method in Barcode: private Dimension calculateSize(){ Dimension d = new Dimension(); if(EnvironmentFactory.getEnvironment() instanceof HeadlessEnvironment) try { if(font == null) { d = draw(new SizingOutput(font, ...


0

You can use session, but depends of size of element. However I suggest you to try to explore if you can use spring Webflow, which is being created for flow pages.


2

By default, Spring uses Java dynamic proxies to implement AOP when the bean implements an interface. The easiest and cleanest way to solve your problem is to make program on interfaces, and inject theinterface insted of the concrete class: @Component public class MyOtherBean { @Autowired private MyInterface myBean; ... } See ...


2

I suspect the issue is that Spring is injecting an AOP proxy which implements MyInterface - possibly for the purposes of transaction management or caching. Are any of MyBean's methods annotated @Transactional or annotated with any other annotation? Ideally you'd probably want to reference MyBean by it's interface type - which should resolve the issue. ...


0

Must be just a glitch. I removed the website module, saved, cleaned the tc server work directory, re-added it and restarted. Back in business. Hope this helps somebody.


0

Designated annotation for inheriting mappings without building entity hierarchy is MappedSuperClass. Other way to solve problem is to not create new table for each forum, but storing all data in existing tables. New column can then be added to differentiate between forums.


1

In the second example the instance has been upcasted to an Object, while in your first example the actual Class is provided. During that upcast the fact that o was some other type is lost. The generics parameters are not considered when calling clazz.getName() since the code prints the actual type of the class. List<String> list is still a List no ...


0

Yes, simply set acknowledge="transacted" on the <int-jms:message-driven-channel-adapter/> and, as long as you use only direct channels (no <queue/> on the channel or task-executor on the channel's dispatcher) then any failure will cause the message to roll back.


2

See my answer here for how to inject dependencies into enums with minimal plumbing.


2

OK, it's quite fiddly, but it CAN be done. It's true that Spring cannot instantiate enums. But that's not a problem - Spring can also use factory methods. This is the key component: public class EnumAutowiringBeanFactoryPostProcessor implements BeanFactoryPostProcessor { private final List<Class<? extends Enum>> enumClasses = new ...


0

Can you not just have the getter named differently from the setter, or have 2 getters and 2 setters if necessary? private int spn; // Standard getter/setter public int getSpn() { return spn; } public void setSpn(int spn) { this.spn = spn; } // More descriptively named getter/setter public int getShortParameterName() { return spn; } ...


2

In your Spring controller, you have access to the HttpSession. This object is used to store information between user requests. You do this with the getAttribute(String) and setAttribute(String, Object) methods. If you want the uploaded file to be available across multiple requests, through the CommonsMultipartFile interface, you can store that object in ...


0

Sring initialize two application contexts here : The ContextLoaderListener create an application context with the beans contained in the file referenced by your context-param tag : <context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/kpi-reporter-servlet.xml</param-value> ...


1

You can comment out the context-param section, something like this: <!--context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/kpi-reporter-servlet.xml</param-value> </context-param--> Or, rename kpi-reporter-servlet.xml to something else, and update context-param's param-value ...


0

I think I know what you are getting at. You are trying to keep system-specific configurations outside of the package. What I've done in the past is leave the applicationContext.xml inside the jar, but have a reference to an external one as well. That file contains the system-specific properties. I usually put it into the application container ...


0

How do you make spring consume context/properties from external files. Use the Spring PropertyPlaceholderConfigurer: <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="ignoreResourceNotFound" value="true"/> <property name="locations"> <list> ...


1

It may be due to Twitter rate limit. You can try to white list your IP and account. See this question for more details.


0

I hade same problem but on WebLogic and I have solved it as described here https://jira.springsource.org/browse/SPR-5652 .


0

I got this error too when switching from jackson 2.1.5 to 2.2.0 (or 2.2.1), try downgrading jackson to 2.1.5? Assume it's due to stricter checks in 2.2, but haven't figured out yet how to correct it.


0

You can try use Spring EL. <prop key="email.username">#{null}</prop>


0

I've searched for something similar when using Spring's Hibernate support. There's no way of adding (or changing) the wiring in a superclass without subclassing and overriding the required method. Or the declarative approach of subclassing and providing a ref value for the desired properties via XML. Anything less "ugly" would probably be less transparent. ...


0

Enable resource filtering like this <project> ... <build> ... <resources> ... <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> ... </resources> <testResources> ...


1

Not necessarily the answer you were looking for, but I would do this with an intermediary super class. public abstract class AbstractDao extends NamedParameterJdbcDaoSupport { @Autowired public void setDataSource(DataSource dataSource) { super.setDataSource(dataSource); } } @Component public class Dao extends AbstractDao { }


1

Try with public String AddActivity(@ModelAttribute Movement movement, BindingResult result, ModelMap model) method signature. see example 17.1 in http://static.springsource.org/spring/docs/3.2.x/spring-framework-reference/html/mvc.html#mvc-ann-methods for more info.



Top 50 recent answers are included