Tag Info

New answers tagged

0

I worked a lot on stuff like this and do not see an elegant way to achieve this without an OR mapper. Any simple solution based on reflection would heavily rely on the 1:1 (or maybe N:1) relation. Further your columns returned are not qualified by their type, so you cannot say which columns matches which class. You may get away with spring-data and ...


1

As Ralf points out, the constructor is executed too early and Spring did not inject anything at this point. Further, you may not hold a reference to Session as it relies on the SessionContext mechanism, which in turn may be thread bound or servlet request bound. Your bean may has a wider scope (e.g. singleton) and you will permanently store the session from ...


1

Use the @PostConstruct tag and get the session then. Your beans will only be injected after your UserDaoImpl is created and @PostConstruct method will only be called by Spring after all your beans are injected. @Service public class UserDaoImpl implements UserDao { @Autowired private SessionFactory sessionFactory; private Session session; ...


0

Also try to ssh onto your application (rhc ssh {appName}) and see if you can connect to the db by running "mysql" on the console. If necessary, try restarting the mysql cartridge using "rhc cartridge restart mysql-5.1 {appName}". +1 on checking your mysql log for errors as well: ...


2

I believe (if I recall properly) that that particular error message should not quote the URI, thus the URI must have been quoted to start with.....


3

The problem is not the h, but that the first character in your string is a quotation mark (").


4

I have created a Jira in order to make that improvement: https://jira.springsource.org/browse/INT-3029 As a work-around you could also extend DefaultJpaOperations (org.springframework.integration.jpa.core) and customize the persist() method, allowing you to handle a Collection type parameters. For some details see: Batch inserts with JPA/EJB3 The ...


0

Your root cause is probably related to the order in which the securement of the message was made from the other side: The order of the actions is significant and is enforced by the interceptor. The interceptor will reject an incoming SOAP message if its security actions were performed in a different order than the one specified by ...


0

@Autowire private HibernateTransactionManager txManager; Wrap the method body with: DefaultTransactionDefinition def = new DefaultTransactionDefinition(); def.setName("transactionName"); def.setPropagationBehavior(TransactionDefinition.PROPAGATION_REQUIRED); TransactionStatus ts = txManager.getTransaction(def); //Body Code txManager.commit(ts);


0

One more example to add for above instance : This is how you can use a static constant in bean using spring. <bean id="foo1" class="Foo"> <property name="someOrgValue"> <util:constant static-field="org.example.Bar.myValue"/> </property> </bean> package org.example; public class Bar { public static String ...


0

Since the @Scheduled method wouldn't have any work to do if there are no items in the work-queue, that is, if no one put any work in the queue between the execution cycles. On the same note, if some work-item was inserted into the work-queue (by an external source probably) immediately after the scheduled-execution was complete, the work won't be attended to ...


1

Does your Spring controller know how to handle no response (i.e. void)? Try returning back a JSON object that indicates a successful action. Example: { "success": true, "message": "Successfully saved... blah blah" } Implementation might look something like: *Out of view (I added produces="application/json") @RequestMapping(value = ...


0

Both my JMS and RabbitMQ class had a connectionFactory class called connectionFactory and so the connectionfactory for JMS was used initialized for RabbitMQ config. JMS class @Bean public ConnectionFactory connectionFactory() throws Exception { ActiveMQConnectionFactory activeMQConnectionFactory = new ActiveMQConnectionFactory(); ...


0

What we basically do: Map the value of the <h:inputText> component to a property (with getter/setter) in the managed-bean (which is called myBean) By using the reRender attribute of the <a4j:commandButton> component, we point which component on the page to be re-rendered (refreshed) when the button is clicked. When clicking on the button, the ...


2

You can use the String.matches method, or the Pattern and Matcher classes for more complicated regex. String s = "Text for test in stackoverflow"; System.out.println(s.matches(".*test.*") ? "Matches" : "Doesn't"); Here's an example with Pattern/Matcher. It's useful for case-insensitive searches, and other options. Pattern p = ...


0

Inbound Gateway is an extension of Message-Driven Channel Adapter so you can use all properties DefaultMessageListenerContainer provides. One of them defines number of concurrent consumers container uses: <int-jms:inbound-gateway request-channel="fooChannel" request-destination-name="foo" extract-request-payload="true" ...


0

there are 2 POST requests with same URL but different request body For a RESTful interface, the same URL should always indicate the same resource. The body of a request may contain different representations of that resource. You could create different HttpMessageContverter classes for the two different kinds of representation.


0

There's a simple way to do this in case you are someone who's looking for a simple call and not a API consumer. HttpClient client = new HttpClient(); client.getParams().setAuthenticationPreemptive(true); Credentials defaultcreds = new UsernamePasswordCredentials("username", "password"); RestTemplate restTemplate = new RestTemplate(); ...


0

Turns out there was a buried exception my logging was preventing me from getting access to. Thanks for help.


0

Concluding from the above comments and related (duplicate) question: How to identify the URL of an Java web application from within? - it is not possible.


0

You should use the spring MapFactoryBean. Spring will give you map when you ask for the bean. <bean id="myBean" class="org.springframework.beans.factory.config.MapFactoryBean"> <property name="sourceMap"> <map> <entry key="k1"> <value>v1</value> </entry> ...


0

The Properties class implements Map Just define the properties bean like so: <util:properties id="myMap" location="classpath:myMap.properties" /> then set a reference to myMap in your bean that needs the properties.


1

I think this might work @Query("{'$or':[ {'A':10}, {'B':20} ] }")


0

I do not know if @Bean public ApplicationContextProvider applicationContextProvider() { return new ApplicationContextProvider(); } the ApplicationContextAware interface. Try to add @Component at ApplicationContextProvider class and then remove the @Bean. I hope that the ApplicationContextAware` interface is taken in account if this class is found by ...


0

I'd say its mudsoup between the try to have it static and use it as a bean. You creating a new instance of the ApplicationContextProvider as a spring bean. This is ApplicationContextAware and so gets the AC injected. But THEN you do not use said bean, you use its static getter to read the field, yet this, static thing never received the AC in the first ...


3

If you can specify the folder where your files are stored you can create a scheduled task that runs each hour and deletes the files older than one hour. Take a look at the @Scheduled annotation.


1

I would go for a temporary table in this case, if the processing of it takes not too long. First you are able to use the sequences like in the final table and all you need to do is issue an "insert into select from" statement once the user clicks ok in the second screen. This would be a simple solution to implement i'd say and all the processing is done. ...


0

Yes. Try this: db.test.count({type: "foo"}) That should work


1

It is possible to use javax.inject.Provider. All thanks go to Phil Webb. public class MySingleton { @Autowired private Provider<MyPrototype> myPrototype; public void operation() { MyPrototype instance = myPrototype.get(); // do something with the instance } }


2

The outbound JPA adapter doesn't currently support persisting a list of entities; feel free to open a new JIRA Issue. You can add a simple <splitter/> before the outbound adapter (no attributes, just input and output channels) and it will bust the list into individual entitities. However, with your current configuration, each persist will be done in a ...


0

To fix this for TC Server 2.9, running Tomcat 7.0.39 I restricted the jars to skip during startup for the context config using: org.apache.catalina.startup.ContextConfig.jarsToSkip=*.jar in catalina.properties.


0

receiveTimeout is the problem. To shutdown, the container must have a chance to stop listening to the queue. If your consumer thread has an infinite timeout, it will continue listening and never check to see if the container needs to shutdown. Your container will take up to the receiveTimeout to shutdown. If it is -1, it will never shutdown.


1

After changed my JVM configuration as following I am able to connect the application over JMX. -Djava.rmi.server.hostname=127.0.0.1 -Dcom.sun.management.jmxremote.port=8014 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false


2

It is impossible to have multipe commandName attributes with a springform:form tag. (The implementation org.springframework.web.servlet.tags.form.FormTag has only a single field to hold this value). The easiest solution (that defently works) would be using a wrapper command objects, that has to fields. public class CombinedCommand() { Activity ...


1

This can be achieved by following approach. In Spring, SecurityContext by default is stored in HttpSession. Instead you can configure it to store in some shared repository. So, configuration should be changed to use your own SecurityContextRepository implementation instead of HttpSessionSecurityContextRepository. Once configured, the security framework ...


0

Solution 1 Register an application wide ExeptionResolver using anyway you like. For ex. public class MyApplicationErrorResolver extends SimpleMappingExceptionResolver { @Autowired private List<LogoutHandler> logoutHandlers; @Override protected ModelAndView doResolveException(HttpServletRequest request, HttpServletResponse ...


0

Currently you are per default allowing access to all URL by using `<intercept-url pattern="/**" access="IS_AUTHENTICATED_ANONYMOUSLY" />` So you need to Blacklist every URL you want to protect. Spring security is checking the patterns in the order listed in the configuration. The first matching pattern is applied without any further checking. So ...


1

As far as i understand you r code looks like: List args = new ArrayList(); args.add(12); args.add(50); jdbcTemplate.queryForInt(sql, args); but queryForInt expect array of objects here (Object...) not a list, and interprets args as single argument. To fix it code should be looks like: List args = new ArrayList(); args.add(12); args.add(50); ...


0

if you use <jsp:include> to include jsp then you can refer.Otherwise you cannot refere from one jsp to another jsp


2

Use Spring profiles. <beans profile="not_test"> <import resource="classpath:context/caching-context.xml" /> </beans> More information in blog post


0

Try using project in intercept-url pattern and instead of jack use ** there and then rest of the url you want to restrict. Eg. Instead /jack/upload-users use /project/**/upload-users. And also note that IS_AUTHENTICATED_ANONYMOUSLY is used to allow access to user even if he's not authenticated in application. Hope this helps you. Cheers.


0

To get this question solved, I gonna describe how I fixed my own Problem. At least the problem was the publishing of my project into my local server, I guess not all built classes have been deployed. With the usage of Maven, it seems to be necessary to add your maven-lib package to your projects deployment assembly (Project > right click > properties > ...


0

I've seen jpathwatch used to achieve something similar, and this works with Java 5. It allows you to poll for file or directory changes at an interval, e.g. every second. If the URI of your webservice endpoint was externalised to a configuration file, you could setup jpathwatch to monitor that configuration file, and when it has changed, re-create your ...


0

I would implement it overriding the loginController Spring bean. Make a copy of org.springframework.extensions.surf.mvc.LoginController.java and add your your custom logic to handleRequestInternal. request.getParameter("username") and request.getHeader("Host") should provide the values for the comparision. One way to override the default implementation by ...


0

Solution using Spring 3.1.3 and Jackson 2.1.0 that works for me (based on Ryans answer and Kornys notes with additional change in Java code "SerializationConfig.Feature" -> "SerializationFeature") public class DateObjectMapper extends ObjectMapper { public DateObjectMapper() { configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, false); ...


0

I have recently faced similar issue. One possible solution to the problem would be to check your main class or wherever you initialize the spring context. Sometimes it happens that exceptions thrown by spring context are caught and never printed or re-thrown. Consider the example below: AbstractApplicationContext context = null; try { context = ...


0

Here is the example with comments. Hope this helps you. public class ApplicationInitializer implements WebApplicationInitializer { //Called first when the application starts loading. public void onStartup(ServletContext servletContext) throws ServletException { System.out.println("Inside application initializer..."); ...


1

I think you don't need a "colspan-like" solution but colspan itself. Note that what you want to span is a table cell, not the textarea. Therefore, you must use the attribute on the enclosing td element. Text areas in HTML have their own layout of rows and columns but it's completely unrelated to HTML tables. A colspan attribute on a textarea simply doesn't ...


0

If I understand you right, then you are trying to instantiate the factory manually via the new command. But the Spring framework must register the beans, when you are trying to use them in the ApplicationContext. You have to create a Factory Bean which provides the creation of common other objects. These objects also have to be registered to the Spring ...



Top 50 recent answers are included